postinst is in epic4 1:2.10.2-1.
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 | #!/bin/sh -e
update-alternatives --install /usr/bin/irc irc /usr/bin/epic4 19 \
--slave /usr/share/man/man1/irc.1.gz irc.1 \
/usr/share/man/man1/epic4.1.gz
update-alternatives --install /etc/epic4/default.irc epic4-default.irc \
/etc/epic4/epic4.irc 19
# Automatically added by dh_installmenu
if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
update-menus
fi
# End automatically added section
|