File: postinst

package info (click to toggle)
vimacs 0.95-1.2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 148 kB
  • ctags: 257
  • sloc: sh: 37; makefile: 29
file content (19 lines) | stat: -rw-r--r-- 289 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh

set -e

case "$1" in
    configure)
        vim --cmd "helptags /usr/share/vim/vim63/doc/" --cmd "q"
    ;;

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

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

#DEBHELPER#