r2273: Autocommit for make-debian
[clsql.git] / debian / postinst.template
1 #!/bin/bash -e
2
3 pkg=%%
4
5 case "$1" in
6     configure)
7         /usr/sbin/register-common-lisp-source ${pkg}
8         ;;
9     abort-upgrade|abort-remove|abort-deconfigure)
10         ;;
11     *)
12         echo "postinst called with unknown argument \`$1'" >&2
13         exit 0
14         ;;
15 esac
16
17 #DEBHELPER#
18
19 exit 0