mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
31870b4e57
- Add files/pkg-deinstall.in PR: ports/112200 Submitted by: John Holland <jholland at kazoocmh.org> (maintainer)
18 lines
210 B
Bash
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
|