prerm is in dia-common 0.97.3+git20160930-8.
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 | #!/bin/sh
set -e
# Automatically added by dh_installxmlcatalogs/UNDECLARED
if [ "$1" = "remove" ] || [ "$1" = "upgrade" ]; then
update-xmlcatalog --del --type system --id "http://www.lysator.liu.se/~alla/dia/" --root || true
update-xmlcatalog --del --type system --id "http://www.lysator.liu.se/~alla/dia/dia-sheet-ns" --root || true
update-xmlcatalog --del --type system --id "http://www.daa.com.au/~james/dia-shape-ns" --root || true
update-xmlcatalog --del --type system --id "http://www.lysator.liu.se/~alla/dia/" --package dia-common || true
update-xmlcatalog --del --type system --id "http://www.lysator.liu.se/~alla/dia/dia-sheet-ns" --package dia-common || true
update-xmlcatalog --del --type system --id "http://www.daa.com.au/~james/dia-shape-ns" --package dia-common || true
fi
# End automatically added section
|