diff options
author | Michele Calgaro <[email protected]> | 2019-04-03 22:56:40 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2019-04-03 22:56:40 +0900 |
commit | 11394aecd1f906fee2ebd2b90412aeba4651fbff (patch) | |
tree | bcf750380e6d9fc7dbe524e16bbe2afde25dcfa0 /ubuntu/maverick/applications/k3b/debian/k3b-trinity.postinst | |
parent | d24bd898174453b586ac90f2ef7a60165fa26fde (diff) | |
download | tde-packaging-11394aecd1f906fee2ebd2b90412aeba4651fbff.tar.gz tde-packaging-11394aecd1f906fee2ebd2b90412aeba4651fbff.zip |
DEB: use _base folder for a distro instead of specific distros (squeeze
and maverick).
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'ubuntu/maverick/applications/k3b/debian/k3b-trinity.postinst')
-rw-r--r-- | ubuntu/maverick/applications/k3b/debian/k3b-trinity.postinst | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/ubuntu/maverick/applications/k3b/debian/k3b-trinity.postinst b/ubuntu/maverick/applications/k3b/debian/k3b-trinity.postinst deleted file mode 100644 index 3807d55e6..000000000 --- a/ubuntu/maverick/applications/k3b/debian/k3b-trinity.postinst +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/sh -e - -case "$1" in - configure) - - # Remove bad files - if dpkg --compare-versions "$2" eq "0.10.3-1"; then - rm -rf /usr/share/applnk/.hidden - rm -rf /usr/share/applnk/System/k3b.desktop - fi - - if dpkg --compare-versions "$2" lt "0.10.3-1"; then - rm -rf /usr/share/applnk/System/k3b.desktop - rm -rf /usr/share/applnk/System/k3bsetup.desktop - fi - - ;; -abort-upgrade|abort-remove|abort-deconfigure) - ;; - -*) - echo "postinst called with unknown argument \`$1'" >&2 - exit 1 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 - |