File: postrm

package info (click to toggle)
docbook-xml-jrefentry 1.1-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 104 kB
  • ctags: 37
  • sloc: xml: 439; makefile: 50; sh: 34
file content (21 lines) | stat: -rw-r--r-- 400 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh
# postrm script for docbook-xml-jrefentry
#

set -e

PACKAGE=docbook-xml-jrefentry

if [ "$1" = disappear ]; then
    if ! install-sgmlcatalog --quiet --remove $PACKAGE
    then
	echo "$0: install-sgmlcatalog failed
  There may be $PACKAGE SGML entities left over in the SGML catalog.
  Continuing anyway." 1>&2 
    fi
fi

# automatically generated debhelper commands
#DEBHELPER#

exit 0