blob: 3f47f0cfbff3dc18c1b62aa3b8fa8b583412e0de (
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
|
# Maintainer: Emma Caldeira <kiito@tilde.team>
# Contributor: Alexander F Rødseth <xyproto@archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Ryan Coyner <rcoyner@gmail.com>
pkgname=mod_wsgi
pkgver=5.0.2
pkgrel=1
pkgdesc='Python WSGI adapter module for Apache'
arch=('x86_64')
url='http://www.modwsgi.org/'
license=('APACHE')
depends=('apache' 'python')
conflicts=('mod_wsgi2')
makedepends=('apache' 'python>=3.8')
install='mod_wsgi.install'
source=($pkgname-$pkgver.tar.gz::"https://codeload.github.com/GrahamDumpleton/mod_wsgi/tar.gz/$pkgver")
sha256sums=('9a0fdb61405abc300ec6b100c440dd98cf31cb5f97aeef4207390937298cad20')
build() {
cd $pkgname-$pkgver
./configure \
--prefix=/usr \
--with-apxs=/usr/bin/apxs \
--with-python=/usr/bin/python
make
}
package() {
make -C $pkgbase-$pkgver DESTDIR="$pkgdir" install
}
|