file layouts. This is a pluggable command-line tool. It includes some built-in features; * Create file layouts for packages. For instance, paste create --template=basic_package MyPackage will create a setuptools-ready file layout. * Serving up web applications, with configuration based on paste.deploy. Author: Ian Bicking <ianb at colorstudy com> WWW: http://pythonpaste.org/script/ PR: ports/106759 Submitted by: Dryice Liu <dryice at dryice.name> Approved by: alexbl (mentor, implicit)
16 lines
210 B
Bash
16 lines
210 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
PKGNAME=$1
|
|
#
|
|
case $2 in
|
|
POST-INSTALL)
|
|
easy_install -q -x -N -S %%PYTHON_SITELIBDIR%% %%EGG%%
|
|
;;
|
|
PRE-INSTALL)
|
|
;;
|
|
*)
|
|
echo "Unexpected Argument $2!!!"
|
|
exit 1
|
|
;;
|
|
esac
|
|
exit 0
|