aboutsummaryrefslogblamecommitdiff
path: root/databases/py-sqlobject/files/pkg-deinstall.in
blob: 8ee207b16f166d7a810b667e001f7be9bfc95859 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                              
#!/bin/sh
# $FreeBSD$
PKGNAME=$1
#
case $2 in
    DEINSTALL)
	easy_install -q -m -x -S %%PYTHON_SITELIBDIR%% %%EGG%%
	;;
    POST-DEINSTALL)
	exit 0
	;;
    *)
	echo "Unexpected Argument $2!!!"
	exit 1
	;;
esac
exit 0