postinst is in libmpich-dev 3.0.4-6ubuntu1.
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 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | #!/bin/sh
# This is a template file for libmpich-dev.postinst, since it will be processed
# by debian/rules. The update-alternatives command below needs the path to the
# lib*.so files, which depends on the multiarch triplet. This can be gotten
# from dpkg-architecture, but to avoid dependence on dpkg-dev, we instead
# determine it at package build-time, and include a processed version of this
# file as the libmpich-dev.postinst, where the variable triplet has been replaced
# by its appropriate value, depending on the build host architecture.
set -e
case "$1" in
configure)
# Continue below
;;
abort-upgrade|abort-remove|abort-deconfigure)
exit 0;
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0;
;;
esac
update-alternatives \
--install /usr/include/mpi mpi /usr/include/mpich 40 \
--slave /usr/lib/libmpi.so libmpi.so /usr/lib/x86_64-linux-gnu/libmpich.so \
--slave /usr/lib/libmpi++.so libmpi++.so /usr/lib/x86_64-linux-gnu/libmpichcxx.so \
--slave /usr/lib/libmpif77.so libmpif77.so /usr/lib/x86_64-linux-gnu/libfmpich.so \
--slave /usr/lib/libmpif90.so libmpif90.so /usr/lib/x86_64-linux-gnu/libmpichf90.so \
--slave /usr/bin/mpicc mpicc /usr/bin/mpicc.mpich \
--slave /usr/bin/mpic++ mpic++ /usr/bin/mpic++.mpich \
--slave /usr/bin/mpicxx mpicxx /usr/bin/mpicxx.mpich \
--slave /usr/bin/mpiCC mpiCC /usr/bin/mpic++.mpich \
--slave /usr/bin/mpif77 mpif77 /usr/bin/mpif77.mpich \
--slave /usr/bin/mpif90 mpif90 /usr/bin/mpif90.mpich \
--slave /usr/share/man/man1/mpicc.1.gz mpicc.1.gz /usr/share/man/man1/mpicc.mpich.1.gz \
--slave /usr/share/man/man1/mpic++.1.gz mpic++.1.gz /usr/share/man/man1/mpic++.mpich.1.gz \
--slave /usr/share/man/man1/mpicxx.1.gz mpicxx.1.gz /usr/share/man/man1/mpicxx.mpich.1.gz \
--slave /usr/share/man/man1/mpiCC.1.gz mpiCC.1.gz /usr/share/man/man1/mpicxx.mpich.1.gz \
--slave /usr/share/man/man1/mpif77.1.gz mpif77.1.gz /usr/share/man/man1/mpif77.mpich.1.gz \
--slave /usr/share/man/man1/mpif90.1.gz mpif90.1.gz /usr/share/man/man1/mpif90.mpich.1.gz
exit 0
|