summaryrefslogtreecommitdiffstats
path: root/dilos/core/tdetoys/debian/kworldclock-trinity.prerm
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-11-15 19:23:30 +0800
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-11-15 19:23:30 +0800
commit0277521b268b21caf0ee21202b92784f302baadc (patch)
tree5d856f96adfbe46b57da31cf60daa1084b4e7a1e /dilos/core/tdetoys/debian/kworldclock-trinity.prerm
parenteb16e7c7281e182297581fa8d565561869c81bca (diff)
downloadtde-packaging-0277521b268b21caf0ee21202b92784f302baadc.tar.gz
tde-packaging-0277521b268b21caf0ee21202b92784f302baadc.zip
DEB: adjusted to new 'core' folder for main packages.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'dilos/core/tdetoys/debian/kworldclock-trinity.prerm')
-rw-r--r--dilos/core/tdetoys/debian/kworldclock-trinity.prerm13
1 files changed, 13 insertions, 0 deletions
diff --git a/dilos/core/tdetoys/debian/kworldclock-trinity.prerm b/dilos/core/tdetoys/debian/kworldclock-trinity.prerm
new file mode 100644
index 000000000..da960279f
--- /dev/null
+++ b/dilos/core/tdetoys/debian/kworldclock-trinity.prerm
@@ -0,0 +1,13 @@
+#!/bin/sh -e
+
+if [ "${BASEDIR:=/}" = "/" ]; then
+ BASEDIR=""
+fi
+
+# Remove the link /usr/share/apps/kworldwatch.
+if [ \( "$1" = "upgrade" -o "$1" = "remove" \) -a -L ${BASEDIR}/usr/share/apps/kworldwatch ]; then
+ rm -f ${BASEDIR}/usr/share/apps/kworldwatch
+fi
+
+#DEBHELPER#
+exit 0