diff options
Diffstat (limited to 'debian/argyll.postinst')
-rw-r--r-- | debian/argyll.postinst | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/debian/argyll.postinst b/debian/argyll.postinst new file mode 100644 index 0000000..d32fab9 --- /dev/null +++ b/debian/argyll.postinst @@ -0,0 +1,52 @@ +#!/bin/sh +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * <postinst> `configure' <most-recently-configured-version> +# * <old-postinst> `abort-upgrade' <new version> +# * <conflictor's-postinst> `abort-remove' `in-favour' <package> +# <new-version> +# * <postinst> `abort-remove' +# * <deconfigured's-postinst> `abort-deconfigure' `in-favour' +# <failed-install-package> <version> `removing' +# <conflicting-package> <version> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +# source debconf library +#. /usr/share/debconf/confmodule + + +case "$1" in + + configure) + # Replace documentation directory with symlink + if [ -d /usr/share/doc/argyll ] && [ ! -L /usr/share/doc/argyll ]; then + if rmdir /usr/share/doc/argyll 2>/dev/null; then + ln -sf argyll-doc /usr/share/doc/argyll + else + echo "Remove nonempty doc directory to doc/argyll.bak" + mv /usr/share/doc/argyll /usr/share/doc/argyll.bak + ln -sf argyll-doc /usr/share/doc/argyll + fi + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + exit 0 + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; + +esac + +#DEBHELPER# + + +exit 0 |