1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-14 03:10:47 +00:00
freebsd-ports/textproc/py-pyx12/files/pkg-deinstall.in
Nicola Vitale 31870b4e57 - Update to 1.3.0
- Add files/pkg-deinstall.in

PR:		ports/112200
Submitted by:	John Holland <jholland at kazoocmh.org> (maintainer)
2007-04-28 12:28:47 +00:00

18 lines
210 B
Bash

#!/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