Updates for new debian standards
[xptest.git] / debian / prerm
1 #! /bin/sh
2 set -e
3
4 LISP_PKG=xptest
5
6
7 case "$1" in
8     remove|upgrade|deconfigure)
9         unregister-common-lisp-source ${LISP_PKG}
10         ;;
11     failed-upgrade)
12         ;;
13     *)
14         echo "prerm called with unknown argument \`$1'" >&2
15         exit 1
16     ;;
17 esac
18
19 #DEBHELPER#
20
21 exit 0
22
23