ports/devel/py-protocols-devel/files/pkg-install.in
Nicola Vitale 7723f74a78 - Added files/pkg-deinstall.in files/pkg-install.in
- Improved pkg-descr
- Recopied by marcus@
- Removed pkg-plist (it now uses a simple Python egg)
- Taken maintainership by dryice@
- Updated to 1.0.a0.r2882

PR:		106764
Approved by:	alexbl (mentor), dryice (maintainer)
2007-01-04 13:48:50 +00:00

16 lines
207 B
Bash

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