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