summaryrefslogtreecommitdiff
path: root/community/mod_wsgi/PKGBUILD
blob: 36445ed53e9d1aed870a8843d6a45290adb49660 (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 79816 2012-11-13 07:48:03Z 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
}