summaryrefslogtreecommitdiff
path: root/debian/postinst.xsane-gimp1.1
blob: 54f80ba23ff472ae6efed0dec35fc1f3b9200668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
set -e
if [ -x /usr/bin/update-menus ] ; then update-menus ; fi
if [ "$1" = "configure" ]; then
    if [ -d /usr/doc -a ! -e /usr/doc/xsane-gimp1.1 -a \
		-d /usr/share/doc/xsane-gimp1.1 ]; then
	ln -sf ../share/doc/xsane-gimp1.1 /usr/doc/xsane-gimp1.1
    fi
    if command -v install-docs >/dev/null 2>&1; then
	install-docs -i /usr/share/doc-base/xsane
    fi
fi