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