forked from ports/contrib
16 lines
412 B
Plaintext
16 lines
412 B
Plaintext
# Description: Python modules for setting up a FastCGI server (ex. lighttpd)
|
|
# URL: http://trac.saddi.com/flup
|
|
# Maintainer: Lucas Hazel, lucas at die dot net dot au
|
|
# Depends on: setuptools
|
|
|
|
name=flup
|
|
version=1.0.2
|
|
release=1
|
|
source=(http://www.saddi.com/software/$name/dist/$name-$version.tar.gz)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
python setup.py install --root=$PKG
|
|
find $PKG -name '*egg-info' | xargs rm -rf
|
|
}
|