mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-19 07:31:35 +01:00
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
# Contributor: Matt Smith <mcs@darkregion.net>
|
|
# Maintainer: Matt Smith <mcs@darkregion.net>
|
|
pkgname=apache2-mod-wsgi
|
|
_realname=mod_wsgi
|
|
pkgver=4.6.5
|
|
pkgrel=0
|
|
pkgdesc="Python WSGI Module for Apache2"
|
|
url="https://github.com/GrahamDumpleton/mod_wsgi"
|
|
arch="all"
|
|
license="Apache-2.0"
|
|
depends="apache2 python2"
|
|
makedepends=" apache2-dev python2-dev"
|
|
options="!check" # no tests provided
|
|
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
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
install -Dm644 "$srcdir"/$pkgname.apache2.conf \
|
|
"$pkgdir"/etc/apache2/conf.d/wsgi-module.conf
|
|
install -Dm644 LICENSE \
|
|
"$pkgdir"/usr/share/doc/$pkgname/LICENSE
|
|
}
|
|
|
|
sha512sums="5f1526b74ea59c8ef897b49b1b2f2de42d9d0144277fd74f9f8e1f3e0198735f98ec30f726883a3192d0ed33a4013232cb2adf8db9d817b4de0198890eaa7044 apache2-mod-wsgi-4.6.5.tar.gz
|
|
5b36a458bd3539e58ea61ec405c4f5c5e0001a644263b0e1f8421a5c7fc7884b6df1355674a9d9b610780b5e9db6ce66d0ae1bbc0e512ecb027c3757209152c8 apache2-mod-wsgi.apache2.conf"
|