postinst is in libpetsc-complex-3.7.7-dbg 3.7.7+dfsg1-2build5.
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 | #!/bin/sh -e
DEB_HOST_MULTIARCH=x86_64-linux-gnu
PETSC_VERSION=3.7.7
PETSC_ARCH=${DEB_HOST_MULTIARCH}
PETSC_DEBUG_ARCH=${PETSC_ARCH}-complex-debug
PETSC_VERSION_NUMBER=$( echo ${PETSC_VERSION} | sed "s/\.//g" )
# Make alternatives links
if [ "$1" = "configure" ]; then
# alternative libpetsc.so.multiarch is deprecated
# test if libpetsc.so.multiarch is still in use, so remove old petsc alternatives
# This should be safe since Conflicts are set up with the dev package versions using deprecated libpetsc.so.multiarch.
if update-alternatives --query petsc | grep libpetsc.so.multiarch > /dev/null ; then
echo Removing deprecated petsc alternatives using libpetsc.so.multiarch.
for alt in `update-alternatives --list petsc`; do
update-alternatives --remove petsc ${alt}
done
fi
update-alternatives --install /usr/lib/petsc petsc /usr/lib/petscdir/${PETSC_VERSION}/${PETSC_DEBUG_ARCH} ${PETSC_VERSION_NUMBER}33 \
--slave /usr/lib/${DEB_HOST_MULTIARCH}/libpetsc.so libpetsc.so /usr/lib/petscdir/${PETSC_VERSION}/${PETSC_DEBUG_ARCH}/lib/libpetsc_complex.so.${PETSC_VERSION} \
--slave /usr/include/petsc petscinclude /usr/lib/petscdir/${PETSC_VERSION}/${PETSC_DEBUG_ARCH}/include \
--slave /usr/lib/${DEB_HOST_MULTIARCH}/pkgconfig/PETSc.pc PETSc.pc /usr/lib/petscdir/${PETSC_VERSION}/${PETSC_DEBUG_ARCH}/lib/pkgconfig/PETSc.pc \
--slave /usr/share/octave/site/m/petsc petsc-octave /usr/lib/petscdir/${PETSC_VERSION}/${PETSC_DEBUG_ARCH}/share/petsc/matlab
fi
# Automatically added by dh_python2:
if which pycompile >/dev/null 2>&1; then
pycompile -p libpetsc-complex-3.7.7-dbg /usr/lib/petscdir/3.7.7/x86_64-linux-gnu-complex-debug/bin
fi
# End automatically added section
|