summaryrefslogtreecommitdiff
path: root/testing/mod_wsgi/PKGBUILD
blob: 24c2d0767ecd0d4d5c3da76140b77bac60f5e9a1 (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
# $Id: PKGBUILD 168687 2012-10-14 04:16:02Z eric $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Ryan Coyner <rcoyner@gmail.com>

pkgname=mod_wsgi
pkgver=3.4
pkgrel=1
pkgdesc="Python WSGI adapter module for Apache"
arch=('i686' 'x86_64')
url="http://www.modwsgi.org/"
license=('APACHE')
depends=('apache' 'python2')
install=mod_wsgi.install
source=("http://modwsgi.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
md5sums=('f42d69190ea0c337ef259cbe8d94d985')

build() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  ./configure --prefix=/usr \
    --with-apxs=/usr/sbin/apxs \
    --with-python=/usr/bin/python2
  make
}

package() {
  cd "${srcdir}/${pkgname}-${pkgver}"
  make DESTDIR="${pkgdir}" install
}