This file is indexed.

postinst is in libhdf5-dev 1.10.0-patch1+docs-4.

This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#!/bin/sh

set -e

if [ "serial" != "serial" ]; then
  update-alternatives \
	--install /usr/bin/h5pcc h5pcc /usr/bin/h5pcc.serial 50 \
	--slave /usr/bin/h5pfc h5pfc /usr/bin/h5pfc.serial \
	--slave /usr/share/man/man1/h5pcc.1.gz h5pcc.1.gz /usr/share/man/man1/h5pcc.serial.1.gz \
	--slave /usr/share/man/man1/h5pfc.1.gz h5pfc.1.gz /usr/share/man/man1/h5pfc.serial.1.gz
fi
update-alternatives \
	--install /usr/lib/x86_64-linux-gnu/pkgconfig/hdf5.pc hdf5.pc /usr/lib/x86_64-linux-gnu/pkgconfig/hdf5-serial.pc 50 \



exit 0