postinst 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" = "configure" ]; then
update-xmlcatalog --add --type public --id "-//GNUstep//DTD gsdoc 0.6.5//EN" --package gnustep-base-common --local /usr/share/xml/gnustep/gsdoc-0_6_5.dtd
update-xmlcatalog --add --type public --id "-//GNUstep//DTD gsdoc 0.6.6//EN" --package gnustep-base-common --local /usr/share/xml/gnustep/gsdoc-0_6_6.dtd
update-xmlcatalog --add --type public --id "-//GNUstep//DTD gsdoc 0.6.7//EN" --package gnustep-base-common --local /usr/share/xml/gnustep/gsdoc-0_6_7.dtd
update-xmlcatalog --add --type public --id "-//GNUstep//DTD gsdoc 1.0.0//EN" --package gnustep-base-common --local /usr/share/xml/gnustep/gsdoc-1_0_0.dtd
update-xmlcatalog --add --type public --id "-//GNUstep//DTD gsdoc 1.0.1//EN" --package gnustep-base-common --local /usr/share/xml/gnustep/gsdoc-1_0_1.dtd
update-xmlcatalog --add --type public --id "-//GNUstep//DTD gsdoc 1.0.2//EN" --package gnustep-base-common --local /usr/share/xml/gnustep/gsdoc-1_0_2.dtd
update-xmlcatalog --add --type public --id "-//GNUstep//DTD gsdoc 1.0.3//EN" --package gnustep-base-common --local /usr/share/xml/gnustep/gsdoc-1_0_3.dtd
update-xmlcatalog --add --type public --id "-//GNUstep//DTD plist 0.9//EN" --package gnustep-base-common --local /usr/share/xml/gnustep/plist-0_9.dtd
update-xmlcatalog --add --type public --id "-//GNUstep//DTD gsdoc" --package gnustep-base-common --root
update-xmlcatalog --add --type public --id "-//GNUstep//DTD plist" --package gnustep-base-common --root
fi
# End automatically added section
|