X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=debian%2Fpostinst.template;h=2bfd7344dd5c3b6c1a99c5077b94e1ef308f5095;hb=42c6738acd91f3eb49dffd07592a1254e7b11901;hp=58e9698946b65ab06fe019c255fac625e1949f6f;hpb=5de01471c06704a60c66d674608e4c7cbd2776bb;p=clsql.git diff --git a/debian/postinst.template b/debian/postinst.template index 58e9698..2bfd734 100644 --- a/debian/postinst.template +++ b/debian/postinst.template @@ -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 + 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