From af5c905ec49085b7c396caf2c5166f0c34cbeb3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Wed, 3 Apr 2019 18:05:50 +0200 Subject: DEB: use _base folder for a distro instead of specific distros (squeeze and maverick). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- .../debian/kde-systemsettings-trinity.preinst | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ubuntu/_base/applications/kde-systemsettings/debian/kde-systemsettings-trinity.preinst (limited to 'ubuntu/_base/applications/kde-systemsettings/debian/kde-systemsettings-trinity.preinst') diff --git a/ubuntu/_base/applications/kde-systemsettings/debian/kde-systemsettings-trinity.preinst b/ubuntu/_base/applications/kde-systemsettings/debian/kde-systemsettings-trinity.preinst new file mode 100644 index 000000000..f7b840ea2 --- /dev/null +++ b/ubuntu/_base/applications/kde-systemsettings/debian/kde-systemsettings-trinity.preinst @@ -0,0 +1,29 @@ +#!/bin/sh -e + +case "$1" in + + upgrade) + + # Remove wrong previous used file/dir: + FILE="/etc/xdg/menus/kde-applications-merged/system-settings-merge.menu" + SUBDIR="/etc/xdg/menus/kde-applications-merged" + if [ ! -L "$SUBDIR" ] && [ -d "$SUBDIR" ]; then + if [ -f "$FILE" ]; then rm -f "$FILE"; fi + rmdir --ignore-fail-on-non-empty "$SUBDIR" + fi + ;; + + install|abort-upgrade) + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; + +esac + +#DEBHELPER# + +exit 0 + -- cgit v1.2.1