Updates for new debian standards
[cluck.git] / debian / postinst
index 113b9982636a82e5fa613807f3a0a19defac9816..5364ee3d06bb55aaa9883586f61fd2c65efc720c 100644 (file)
@@ -1,26 +1,18 @@
 #! /bin/sh
-# postinst script for cl-cluck
-
 set -e
 
 case "$1" in
     configure)
-       /usr/sbin/register-common-lisp-source cluck
-    ;;
-
+       register-common-lisp-source cluck
+        ;;
     abort-upgrade|abort-remove|abort-deconfigure)
-
-    ;;
-
+        ;;
     *)
         echo "postinst called with unknown argument \`$1'" >&2
         exit 1
-    ;;
+        ;;
 esac
 
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
 #DEBHELPER#
 
 exit 0