From 54987baa2946868ae04e93090d4da5693afaa3b1 Mon Sep 17 00:00:00 2001 From: Denis Kozadaev Date: Thu, 30 Jan 2020 22:13:12 +0300 Subject: DilOS: tdebase build pack Signed-off-by: Denis Kozadaev (cherry picked from commit 042414011edfd405230b65e77e2b14870852760f) --- dilos/tdebase/debian/kfind-trinity.postinst | 45 +++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 dilos/tdebase/debian/kfind-trinity.postinst (limited to 'dilos/tdebase/debian/kfind-trinity.postinst') diff --git a/dilos/tdebase/debian/kfind-trinity.postinst b/dilos/tdebase/debian/kfind-trinity.postinst new file mode 100644 index 000000000..48d0ee2f8 --- /dev/null +++ b/dilos/tdebase/debian/kfind-trinity.postinst @@ -0,0 +1,45 @@ +#! /bin/sh -e + +if [ "${BASEDIR:=/}" = "/" ]; then + BASEDIR="" +fi + +package_name=kfind-trinity + +divert_remove() + { + divert=`dpkg-divert --listpackage "$1"` + if [ -n "$divert" ] && [ "$divert" = "LOCAL" ]; then + dpkg-divert --remove --local --rename "$1" + fi + if [ -n "$divert" ] && [ "$divert" = "$package_name" ]; then + dpkg-divert --remove --package $package_name --rename "$1" + fi + } + +case "$1" in + + configure) + divert_remove /usr/share/icons/hicolor/16x16/apps/kfind.png + divert_remove /usr/share/icons/hicolor/22x22/apps/kfind.png + divert_remove /usr/share/icons/hicolor/32x32/apps/kfind.png + divert_remove /usr/share/icons/hicolor/48x48/apps/kfind.png + divert_remove /usr/share/icons/hicolor/64x64/apps/kfind.png + ;; + + install) + ;; + + abort-upgrade) + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; + +esac + +#DEBHELPER# + +exit 0 -- cgit v1.2.1