prerm is in libxml-sax-perl 0.99+dfsg-1ubuntu0.2.
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 | #!/bin/sh
## ----------------------------------------------------------------------
## debian/prerm : preremoval script for libxml-sax-perl
## ----------------------------------------------------------------------
## ----------------------------------------------------------------------
set -e
## ----------------------------------------------------------------------
if [ "$1" = remove ]
then
update-perl-sax-parsers --remove XML::SAX::PurePerl
update-perl-sax-parsers --update
fi
## ----------------------------------------------------------------------
## automatically generated debhelper commands
exit 0
## ----------------------------------------------------------------------
|