summaryrefslogtreecommitdiff
path: root/databases/py-sqlobject/files/pkg-install.in
blob: 9ccf8a79ce57be8cb0bdb2c080ae089403948159 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# $FreeBSD$
PKGNAME=$1
#
case $2 in
    POST-INSTALL)
	easy_install -q -N -x -S %%PYTHON_SITELIBDIR%% %%EGG%%
	;;
    PRE-INSTALL)
	;;
    *)
	echo "Unexpected Argument $2!!!"
	exit 1
	;;
esac
exit 0