File: postinst

package info (click to toggle)
crossfire-client 1.2.0-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,880 kB
  • ctags: 2,012
  • sloc: ansic: 21,003; sh: 2,703; makefile: 540; perl: 48
file content (11 lines) | stat: -rw-r--r-- 375 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

if [ "$1" = "configure" ]; then
        if [ -d /usr/doc -a ! -e /usr/doc/crossfire-client -a -d /usr/share/doc/crossfire-client ]; then
		ln -s ../share/doc/crossfire-client /usr/doc/crossfire-client-gtk
		ln -s ../share/doc/crossfire-client /usr/doc/crossfire-client-x11
		ln -s ../share/doc/crossfire-client /usr/doc/crossfire-client
        fi
fi

#DEBHELPER#