X-Git-Url: http://git.kpe.io/?p=umlisp.git;a=blobdiff_plain;f=debian%2Fpostinst;h=f3c46a1a2673dd88152bbae62999e1e5ac7f86d1;hp=f1c0a35d71850862d96e71484c93d138345e051d;hb=90dcc29376b4e52a1ba4b7b86dd19ce9f81be4c5;hpb=7e5a9325a6457708dc77d10f0e47d0cf7c685f9e diff --git a/debian/postinst b/debian/postinst index f1c0a35..f3c46a1 100644 --- a/debian/postinst +++ b/debian/postinst @@ -1,33 +1,11 @@ #! /bin/sh -# -# see: dh_installdeb(1) - set -e -# package name according to lisp LISP_PKG=umlisp -# summary of how this script can be called: -# * `configure' -# * `abort-upgrade' -# * `abort-remove' `in-favour' -# -# * `abort-deconfigure' `in-favour' -# `removing' -# -# for details, see http://www.debian.org/doc/debian-policy/ or -# the debian-policy package -# -# quoting from the policy: -# Any necessary prompting should almost always be confined to the -# post-installation script, and should be protected with a conditional -# so that unnecessary prompting doesn't happen if a package's -# installation fails and the `postinst' is called with `abort-upgrade', -# `abort-remove' or `abort-deconfigure'. - case "$1" in configure) - /usr/sbin/register-common-lisp-source ${LISP_PKG} + register-common-lisp-source ${LISP_PKG} ;; abort-upgrade|abort-remove|abort-deconfigure) ;; @@ -37,9 +15,6 @@ case "$1" in ;; esac -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - #DEBHELPER# exit 0