v1.0 changelog
[drlaunch] / debian / drlaunch.prerm
1 #!/bin/sh
2
3 FNS="/usr/lib/hildon-desktop/drlaunch_widget.py /usr/share/applications/hildon-home/drlaunch.desktop"
4
5 for F in $FNS ; do
6         if test -e "$F" ; then
7                 echo "Removing: $F"
8                 rm -f "$F"
9         fi
10 done
11
12 # Automatically added by dh_pysupport
13 if which update-python-modules >/dev/null 2>&1; then
14         update-python-modules -c  drlaunch.public
15 fi
16 # End automatically added section
17
18 exit 0
19