File: src.postinst

package info (click to toggle)
dot-forward 0.71-2
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 504 kB
  • ctags: 347
  • sloc: ansic: 2,840; makefile: 399; sh: 298
file content (19 lines) | stat: -rw-r--r-- 373 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
#!/bin/sh -e

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

echo ""
echo "To build #PACKAGE# binary package, you have to run"
echo ""
echo "         build-#PACKAGE#"
echo ""

echo -n "Press ENTER to continue..."
read blah

exit 0