summaryrefslogtreecommitdiff
path: root/textproc/py-pyx12/files/pkg-deinstall.in
blob: 6f79ab6fb6dc74664d5fe5ead4e56b4be1eff5f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
PKGNAME=$1
#
case $2 in
    DEINSTALL)
	rm -f %%DATADIR%%/test/*.pyc
	rm -f %%DATADIR%%/test/*.pyo
	;;
    POST-DEINSTALL)
	exit 0
	;;
    *)
	echo "Unexpected Argument $2!!!"
	exit 1
	;;
esac
exit 0