X-Git-Url: http://git.maemo.org/git/?p=someplayer;a=blobdiff_plain;f=debian%2Fpostrm;fp=debian%2Fpostrm;h=57368a854dbc2dcb2beb004146426c761caca67e;hp=0000000000000000000000000000000000000000;hb=907c06f2fae672a05f980bbdf536eb1acc341974;hpb=3662d1cb79002a5f236c7c3f3f62d3a07bdd2ec8 diff --git a/debian/postrm b/debian/postrm new file mode 100644 index 0000000..57368a8 --- /dev/null +++ b/debian/postrm @@ -0,0 +1,41 @@ +#!/bin/sh +# postrm script for someplayer +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +rm -f /usr/bin/someplayer + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + +