1
0
forked from ports/contrib

19 lines
418 B
Plaintext
Raw Normal View History

2015-04-04 16:59:24 +11:00
# Description: Python WSGI adapter module for Apache.
2020-06-27 21:52:12 +10:00
# URL: https://www.modwsgi.org/
2014-11-10 23:28:07 +11:00
# Maintainer: Danny Rawlins, crux at romster dot me
2008-04-11 12:53:18 +10:00
# Depends on: apache python
2007-08-21 20:48:17 +10:00
name=mod_wsgi
2020-06-27 21:52:12 +10:00
version=4.7.1
2007-08-21 20:48:17 +10:00
release=1
2015-04-04 16:59:24 +11:00
source=(https://github.com/GrahamDumpleton/$name/archive/$version.tar.gz)
2007-08-21 20:48:17 +10:00
build() {
2008-04-11 12:53:18 +10:00
cd mod_wsgi-$version
2007-08-21 20:48:17 +10:00
./configure --prefix=/usr
make
make DESTDIR=$PKG install
2008-04-11 12:53:18 +10:00
chmod a-x $PKG/usr/lib/apache/mod_wsgi.so
2007-08-21 20:48:17 +10:00
}
2008-04-11 12:53:18 +10:00