File: postinst.template

package info (click to toggle)
osdclock 0.5-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 72 kB
  • ctags: 18
  • sloc: ansic: 101; makefile: 79; sh: 8
file content (8 lines) | stat: -rw-r--r-- 240 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#!/bin/sh
# Make symlink from /usr/share/doc/::PKG:: to /usr/doc/::PKG::
if [ "$1" = "configure" ]; then
	if [ -d /usr/doc -a ! -e /usr/doc/::PKG:: -a -d /usr/share/doc/::PKG:: ]; then
		ln -sf ../share/doc/::PKG:: /usr/doc/::PKG::
	fi
fi