X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=debian%2Fdrlaunch.prerm;fp=debian%2Fdrlaunch.prerm;h=fbc0f8615f0c410f2470a3b4aa27257070c9f547;hb=2fe384410a4c7a712d33ea17f5bc070b1bf052d2;hp=0000000000000000000000000000000000000000;hpb=9b92e579559c90264f4c3c71658a332cb2432d8a;p=drlaunch diff --git a/debian/drlaunch.prerm b/debian/drlaunch.prerm new file mode 100644 index 0000000..fbc0f86 --- /dev/null +++ b/debian/drlaunch.prerm @@ -0,0 +1,19 @@ +#!/bin/sh + +FNS="/usr/lib/hildon-desktop/drlaunch_widget.py /usr/share/applications/hildon-home/drlaunch.desktop" + +for F in $FNS ; do + if test -e "$F" ; then + echo "Removing: $F" + rm -f "$F" + fi +done + +# Automatically added by dh_pysupport +if which update-python-modules >/dev/null 2>&1; then + update-python-modules -c drlaunch.public +fi +# End automatically added section + +exit 0 +