r11566: add debian files
[cluck.git] / debian / prerm
1 #! /bin/sh
2
3 set -e
4
5 case "$1" in
6     remove|upgrade|deconfigure)
7         /usr/sbin/unregister-common-lisp-source cluck
8         ;;
9     failed-upgrade)
10         ;;
11     *)
12         echo "prerm called with unknown argument \`$1'" >&2
13         exit 1
14     ;;
15 esac
16
17 # dh_installdeb will replace this with shell code automatically
18 # generated by other debhelper scripts.
19
20 #DEBHELPER#
21
22 exit 0
23
24