prerm is in sgml-base 1.26+nmu1ubuntu1.
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 41 42 43 | #!/bin/sh
## ----------------------------------------------------------------------
## debian/prerm : preremoval script for sgml-base
## ----------------------------------------------------------------------
## ----------------------------------------------------------------------
set -e
## ----------------------------------------------------------------------
if [ "$1" = "remove" ] || [ "$1" = "upgrade" ]
then
## ------------------------------------------------------------------
TRANSCAT=/etc/sgml/transitional.cat
if [ -f ${TRANSCAT} ]
then
update-catalog --remove --super ${TRANSCAT} || true
rm -f ${TRANSCAT} ${TRANSCAT}.old
fi
fi
## ----------------------------------------------------------------------
## automatically generated debhelper commands
# Automatically added by dh_usrlocal
(
while read dir; do
rmdir "$dir" 2>/dev/null || true
done
) << DATA
/usr/local/share/sgml/declaration
/usr/local/share/sgml/dtd
/usr/local/share/sgml/entities
/usr/local/share/sgml/misc
/usr/local/share/sgml/stylesheet
/usr/local/share/sgml
DATA
# End automatically added section
exit 0
## ----------------------------------------------------------------------
|