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