postinst is in root-system-bin 5.34.30-0ubuntu8.
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 | #! /bin/sh
# postinst script for libroot
#
# see: dh_installdeb(1)
set -e
case "$1" in
configure)
# Alternatives update
# update-alternatives --install /usr/bin/cint cint \
# /usr/bin/cint.root 30 \
# --slave /usr/share/man/man1/cint.1.gz \
# cint.1.gz /usr/share/man/man1/cint.root.1.gz
# update-alternatives --install /usr/bin/makecint makecint \
# /usr/bin/makecint.root 30 \
# --slave /usr/share/man/man1/makecint.1.gz \
# makecint.1.gz /usr/share/man/man1/makecint.root.1.gz
;;
abort-upgrade|abort-remove|abort-deconfigure)
# Nothing to be done here
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 0
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
# Automatically added by dh_installmenu
if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
update-menus
fi
# End automatically added section
exit 0
|