postinst is in rarian-compat 0.8.1-5.
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 | #!/bin/sh
set -e
# In some cases old scrollkeeper left over its catalog. See #532271.
if [ "$1" = "configure" ] && dpkg --compare-versions "$2" lt "0.8.1-4.1"; then
update-xmlcatalog --del --type uri --id "http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/" --package scrollkeeper >/dev/null 2>/dev/null || true
fi
# Automatically added by dh_installxmlcatalogs
if [ "$1" = "configure" ]; then
update-xmlcatalog --add --type uri --id "http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/" --package rarian-compat --local /usr/share/xml/scrollkeeper/dtds/catalog.xml
update-xmlcatalog --add --type uri --id "http://scrollkeeper.sourceforge.net/dtds/scrollkeeper-omf-1.0/" --package rarian-compat --root
fi
# End automatically added section
|