File: postinst

package info (click to toggle)
pixmap 2.6pl4-8
  • links: PTS
  • area: main
  • in suites: potato
  • size: 792 kB
  • ctags: 1,559
  • sloc: ansic: 12,703; makefile: 866; sh: 11
file content (11 lines) | stat: -rw-r--r-- 264 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh -e

[ $1 = configure ] || exit 0

if [ -x /usr/bin/update-menus ] ; then update-menus ; fi

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