diff options
Diffstat (limited to 'debian/icc-utils.postinst')
-rw-r--r-- | debian/icc-utils.postinst | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/debian/icc-utils.postinst b/debian/icc-utils.postinst new file mode 100644 index 0000000..220a5a0 --- /dev/null +++ b/debian/icc-utils.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/icc-utils ] && [ ! -L /usr/share/doc/icc-utils ]; then + if rmdir /usr/share/doc/icc-utils 2>/dev/null; then + ln -sf argyll-doc /usr/share/doc/iss-utils + else + echo "Remove nonempty doc directory to doc/icc-utils.bak" + mv /usr/share/doc/icc-utils /usr/share/doc/icc-utils.bak + ln -sf argyll-doc /usr/share/doc/icc-utils + fi + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + exit 0 + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; + +esac + +#DEBHELPER# + + +exit 0 |