#! /bin/sh
# postrm script for debiandoc2dbxml
#
# see: dh_installdeb(1)

set -e

## ----------------------------------------------------------------------
## Remove SGML catalog entries

CENTRALCAT=/etc/sgml/debiandoc-xml.cat
if [ "$1" = "purge" ]
then
    rm -f ${CENTRALCAT} ${CENTRALCAT}.old
fi

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0
