blob: ececb9a38638aae06b054e302966bd752ed375eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Contributor: Matt Smith <mcs@darkregion.net>
# Maintainer: Matt Smith <mcs@darkregion.net>
pkgname=apache2-mod-wsgi
_realname=mod_wsgi
pkgver=4.5.4
pkgrel=0
pkgdesc="Python WSGI Module for Apache2"
url="http://code.google.com/p/modwsgi/"
arch="all"
license="ASL 2.0"
depends="apache2 python2"
depends_dev=
makedepends="$depends_dev apache2-dev python2-dev"
install=""
subpackages="$pkgname-doc"
source="$pkgname-$pkgver.tar.gz::https://github.com/GrahamDumpleton/mod_wsgi/archive/$pkgver.tar.gz
$pkgname.apache2.conf"
builddir="$srcdir"/$_realname-$pkgver
build() {
cd "$builddir"
CFLAGS="" CXXFLAGS="" CPPFLAGS="" \
./configure --prefix=/usr \
--with-apxs=/usr/bin/apxs \
--with-python=/usr/bin/python2 || return 1
make || return 1
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install || return 1
install -Dm644 "$srcdir"/$pkgname.apache2.conf \
"$pkgdir"/etc/apache2/conf.d/wsgi-module.conf || return 1
install -Dm644 LICENSE \
"$pkgdir"/usr/share/doc/$pkgname/LICENSE || return 1
}
sha512sums="853e89bb2ebb8e59540822c8ec425b07f90419615677dd5a6a7b09302f706a67e55396b70d4988d431d4a08c52e8ee5efd8db6e15bf56cfe841eed6dd7de68ef apache2-mod-wsgi-4.5.4.tar.gz
5b36a458bd3539e58ea61ec405c4f5c5e0001a644263b0e1f8421a5c7fc7884b6df1355674a9d9b610780b5e9db6ce66d0ae1bbc0e512ecb027c3757209152c8 apache2-mod-wsgi.apache2.conf"
|