20 lines
483 B
Plaintext
20 lines
483 B
Plaintext
# Description: Python WSGI adapter module for Apache.
|
|
# URL: http://www.modwsgi.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
|
# Depends on: apache python
|
|
|
|
name=mod_wsgi
|
|
version=4.4.10
|
|
release=1
|
|
source=(https://github.com/GrahamDumpleton/$name/archive/$version.tar.gz)
|
|
|
|
build() {
|
|
cd mod_wsgi-$version
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
chmod a-x $PKG/usr/lib/apache/mod_wsgi.so
|
|
}
|
|
|