prerm is in gnubg 1.06.001-1build1.
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 | #!/bin/sh
#
# Remove a built bearoffs database, if any is present.
set -e
if [ "remove" = "$1" ] ; then
rm -f /var/lib/gnubg/gnubg_os0.bd
rm -f /var/lib/gnubg/gnubg_ts0.bd
fi
|