postinst is in tcl8.4 8.4.19-4ubuntu3.
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 | #!/bin/sh
set -e
if [ "$1" = "configure" ]; then
update-alternatives --install /usr/bin/tclsh tclsh /usr/bin/tclsh8.4 841 \
--slave /usr/share/man/man1/tclsh.1.gz tclsh.1 \
/usr/share/man/man1/tclsh8.4.1.gz
fi
# Automatically added by dh_installmenu
if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
update-menus
fi
# End automatically added section
# Automatically added by dh_makeshlibs
if [ "$1" = "configure" ]; then
ldconfig
fi
# End automatically added section
|