5364ee3d06bb55aaa9883586f61fd2c65efc720c
[cluck.git] / debian / postinst
1 #! /bin/sh
2 set -e
3
4 case "$1" in
5     configure)
6         register-common-lisp-source cluck
7         ;;
8     abort-upgrade|abort-remove|abort-deconfigure)
9         ;;
10     *)
11         echo "postinst called with unknown argument \`$1'" >&2
12         exit 1
13         ;;
14 esac
15
16 #DEBHELPER#
17
18 exit 0
19
20