File: postinst

package info (click to toggle)
zenirc 2.112-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 1,116 kB
  • ctags: 770
  • sloc: lisp: 5,806; sh: 217; makefile: 200
file content (14 lines) | stat: -rw-r--r-- 243 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

set -e

PACKAGE=zenirc

case "$1" in
    configure|abort-upgrade|abort-deconfigure|abort-remove)
	/usr/lib/emacsen-common/emacs-package-install $PACKAGE
	;;
    *)
	echo "postinst called with unknown argument \`$1'" >&2
    ;;
esac