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