File: postinst

package info (click to toggle)
hello 1.3-16
  • links: PTS
  • area: main
  • in suites: potato
  • size: 380 kB
  • ctags: 145
  • sloc: ansic: 1,058; makefile: 116; sh: 33
file content (10 lines) | stat: -rw-r--r-- 321 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e
install-info --description='GNU Hello.  Prints a classic greeting.' \
	     --quiet /usr/info/hello.info

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