mirror of
https://git.freebsd.org/ports.git
synced 2025-07-08 12:59:17 -04:00
- 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)
16 lines
207 B
Bash
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
|