prerm is in libfox-1.6-dev 1.6.49-2ubuntu1.
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
# prerm script for fox
#
# see: dh_installdeb(1)
set -e
vers=1.6
if [ "$1" = "remove" ]; then
update-alternatives --remove fox-config /usr/bin/fox-config-$vers
update-alternatives --remove reswrap /usr/bin/reswrap-$vers
fi
exit 0
|