contrib/mod_wsgi/Pkgfile

20 lines
472 B
Plaintext
Raw Normal View History

2008-04-11 04:53:18 +02:00
# Description: Apache mod_wsgi adapter.
# URL: http://code.google.com/p/modwsgi/
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2008-04-11 04:53:18 +02:00
# Packager: James Mills, prologic at shortcircuit dot net dot au
# Depends on: apache python
2007-08-21 12:48:17 +02:00
name=mod_wsgi
2011-01-24 09:22:13 +01:00
version=3.3
2007-08-21 12:48:17 +02:00
release=1
2008-04-11 04:53:18 +02:00
source=(http://modwsgi.googlecode.com/files/mod_wsgi-$version.tar.gz)
2007-08-21 12:48:17 +02:00
build() {
2008-04-11 04:53:18 +02:00
cd mod_wsgi-$version
2007-08-21 12:48:17 +02:00
./configure --prefix=/usr
make
make DESTDIR=$PKG install
2008-04-11 04:53:18 +02:00
chmod a-x $PKG/usr/lib/apache/mod_wsgi.so
2007-08-21 12:48:17 +02:00
}
2008-04-11 04:53:18 +02:00