2015-04-04 07:59:24 +02:00
|
|
|
# Description: Python WSGI adapter module for Apache.
|
|
|
|
# URL: http://www.modwsgi.org/
|
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
|
2015-04-04 07:59:24 +02:00
|
|
|
version=4.4.10
|
2007-08-21 12:48:17 +02:00
|
|
|
release=1
|
2015-04-04 07:59:24 +02:00
|
|
|
source=(https://github.com/GrahamDumpleton/$name/archive/$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
|
|
|
|