contrib/mod_wsgi/Pkgfile

19 lines
418 B
Plaintext
Raw Normal View History

2015-04-04 07:59:24 +02:00
# Description: Python WSGI adapter module for Apache.
2020-06-27 13:52:12 +02:00
# URL: https://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
# Depends on: apache python
2007-08-21 12:48:17 +02:00
name=mod_wsgi
2021-08-22 16:45:26 +02:00
version=4.9.0
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