r2842: *** empty log message ***
[clsql.git] / debian / postinst.template
index 58e9698946b65ab06fe019c255fac625e1949f6f..8ab4c3520c224d56d866e801d71a78b2cb892349 100644 (file)
@@ -1,28 +1,21 @@
-#! /bin/sh
-# From UncommonSQL package
-
+#!/bin/sh 
 set -e
 
-# package name according to lisp
-LISP_PKG=%%
+pkg=%%
 
 case "$1" in
     configure)
-       /usr/sbin/register-common-lisp-source ${LISP_PKG}
+       #clc-only-compatible $pkg allegro cmucl lispworks openmcl
+       /usr/sbin/register-common-lisp-source $pkg
        ;;
-
     abort-upgrade|abort-remove|abort-deconfigure)
        ;;
-
     *)
         echo "postinst called with unknown argument \`$1'" >&2
         exit 0
        ;;
 esac
 
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
 #DEBHELPER#
 
 exit 0