File: postinst

package info (click to toggle)
opt 3.7-4
  • links: PTS
  • area: main
  • in suites: potato
  • size: 752 kB
  • ctags: 510
  • sloc: ansic: 2,880; perl: 481; sh: 440; tcl: 344; makefile: 90
file content (15 lines) | stat: -rw-r--r-- 414 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# post install process for OPT
#
# 30 Jul 1998 P.A. Ouellette <pouelle@debian.org>
#
set -e
install-info --quiet --section development opt --description="Opt - options and parameter subroutine library"  /usr/share/info/opt.info.gz

if [ "$1" = "configure" ]; then
   if [ -d /usr/doc -a ! -e /usr/doc/opt \
          -a -d /usr/share/doc/opt ]; then
      ln -sf ../share/doc/opt /usr/doc/opt
   fi
fi