2bfd7344dd5c3b6c1a99c5077b94e1ef308f5095
[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         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