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