2019e4fa80
- Bumped PORTREVISION - Fixed the issue with packing list, when you have previously installed setuptools on the system - Fixed a typo in pkg-descr - Replaced pkg-plist with PLIST_FILES PR: ports/107613 Submitted by: Nicola Vitale <nivit at email.it> Approved by: alexbl (mentor, implicit), maintainer timeout (15 days)
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
|