mild cleanup
[kmrcl.git] / debian / postinst
1 #! /bin/sh
2 set -e
3
4 LISP_PKG=kmrcl
5
6 case "$1" in
7     configure)
8         register-common-lisp-source ${LISP_PKG}
9         ;;
10     abort-upgrade|abort-remove|abort-deconfigure)
11         ;;
12     *)
13         echo "postinst called with unknown argument \`$1'" >&2
14         exit 1
15         ;;
16 esac
17
18 #DEBHELPER#
19
20 exit 0