prerm is in gnustep-base-common 1.24.0-1ubuntu3.
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 | #!/bin/sh
set -e
# Automatically added by dh_installxmlcatalogs
if [ "$1" = "remove" ] || [ "$1" = "upgrade" ]; then
update-xmlcatalog --del --type public --id "-//GNUstep//DTD gsdoc" --root || true
update-xmlcatalog --del --type public --id "-//GNUstep//DTD plist" --root || true
update-xmlcatalog --del --type public --id "-//GNUstep//DTD gsdoc 0.6.5//EN" --package gnustep-base-common || true
update-xmlcatalog --del --type public --id "-//GNUstep//DTD gsdoc 0.6.6//EN" --package gnustep-base-common || true
update-xmlcatalog --del --type public --id "-//GNUstep//DTD gsdoc 0.6.7//EN" --package gnustep-base-common || true
update-xmlcatalog --del --type public --id "-//GNUstep//DTD gsdoc 1.0.0//EN" --package gnustep-base-common || true
update-xmlcatalog --del --type public --id "-//GNUstep//DTD gsdoc 1.0.1//EN" --package gnustep-base-common || true
update-xmlcatalog --del --type public --id "-//GNUstep//DTD gsdoc 1.0.2//EN" --package gnustep-base-common || true
update-xmlcatalog --del --type public --id "-//GNUstep//DTD gsdoc 1.0.3//EN" --package gnustep-base-common || true
update-xmlcatalog --del --type public --id "-//GNUstep//DTD plist 0.9//EN" --package gnustep-base-common || true
fi
# End automatically added section
|