debian/postrm
author Mario de Sousa <msousa@fe.up.pt>
Wed, 03 Apr 2013 19:49:52 +0100
changeset 812 6679b6b21214
parent 171 59f5197b088a
permissions -rwxr-xr-x
Partial fix to VAR_EXTERN vs VAR_GLOBAL check. Now considers globals declared in resources too. TODO: recursively check FB declared in the program.
#!/bin/sh
# postrm script for canfestival-objdictedit
#
# see: dh_installdeb(1)

set -e

MATIEC=/usr/bin/iec2c

case "$1" in
    purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
	
	if [ -f "$MATIEC" ]; then
		rm $MATIEC
	fi
	;;

    *)
        echo "postrm called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0