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