Files
ports/www/py-paste/files/pkg-install.in
Nicola Vitale f0bf4f5338 - Added files/pkg-deinstall files/pkg-install
- Added variable PYPASTE_EGG

Approved by:	alexbl (mentor), dryice (maintainer)
2006-12-31 13:30:35 +00:00

17 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