File: postinst

package info (click to toggle)
make 3.76.1-8
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 2,540 kB
  • ctags: 1,231
  • sloc: ansic: 18,525; sh: 367; makefile: 189
file content (23 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/sh
set -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 "Development" "Development" \
 --description="The GNU make utility."  /usr/info/make.info.gz

exit 0