File: postinst

package info (click to toggle)
prcs 1.3.1-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,304 kB
  • ctags: 3,395
  • sloc: cpp: 17,388; ansic: 8,305; sh: 2,621; lisp: 1,816; perl: 649; lex: 354; makefile: 208; pascal: 85
file content (25 lines) | stat: -rw-r--r-- 576 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
24
25
#!/bin/sh -e
# File: postinst
# Description: Postinst file for the Debian prcs package
# Author: Rafael Laboissire <rafael@icp.inpg.fr>
# Created on: 29 Oct 1998 14:07:48 +0100
# Last modified on: Tue Jan 18 09:19:34 CET 2000

set -e

case "$1" in
    configure)     
        install-info --quiet --section Development Development \
	   --description="The Project Revision Control System" \
           /usr/share/info/prcs.info
        ;;

    abort-upgrade | abort-deconfigure | abort-remove)
	;;
    *)
	echo "$0: incorrect arguments: $*" >&2
	exit 1
	;;
esac

#DEBHELPER#