postinst is in guile-1.8-libs 1.8.8+1-10ubuntu1.
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 | #!/bin/sh
set -e
case "$1" in
configure)
if test -d /usr/share/slib; then
dpkg-trigger /usr/share/slib
fi
;;
triggered)
case " $2 " in
*" /usr/share/slib "*)
# Configure slib support.
if test -d /usr/share/slib
then
(cd /usr/share/guile/1.8 && ln -sf ../../slib .)
/usr/lib/guile-1.8/bin/guile -c \
"(use-modules (ice-9 slib)) (require 'new-catalog)"
else
# slib isn't installed -- clean up symlink.
rm -f /usr/share/guile/1.8/slib
fi
;;
esac
;;
esac
# Automatically added by dh_makeshlibs
if [ "$1" = "configure" ]; then
ldconfig
fi
# End automatically added section
|