summaryrefslogtreecommitdiffstats
path: root/dilos/tdetoys/debian/kworldclock-trinity.prerm
blob: da960279f405f40837c1e0f61dff6a29c8aaf50c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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