r2842: *** empty log message ***
[clsql.git] / debian / postinst.template
1 #!/bin/sh 
2 set -e
3
4 pkg=%%
5
6 case "$1" in
7     configure)
8         #clc-only-compatible $pkg allegro cmucl lispworks openmcl
9         /usr/sbin/register-common-lisp-source $pkg
10         ;;
11     abort-upgrade|abort-remove|abort-deconfigure)
12         ;;
13     *)
14         echo "postinst called with unknown argument \`$1'" >&2
15         exit 0
16         ;;
17 esac
18
19 #DEBHELPER#
20
21 exit 0