File: postinst

package info (click to toggle)
eudc 1.28b-5
  • links: PTS
  • area: main
  • in suites: potato
  • size: 336 kB
  • ctags: 160
  • sloc: lisp: 2,239; sh: 56; makefile: 50
file content (20 lines) | stat: -rw-r--r-- 334 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh -e

case "$1" in
    configure)
        # continue below
    ;;

    abort-upgrade|abort-remove|abort-deconfigure)
        exit 0;
    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2;
        exit 0;
    ;;
esac

install-info --quiet --section Emacs Emacs    /usr/share/info/eudc.info

#DEBHELPER#