summaryrefslogtreecommitdiff
path: root/community/mod_wsgi2/PKGBUILD
blob: 07d26f45f61877b6c490f0c029588493b2f416c4 (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
# $Id: PKGBUILD 80683 2012-11-29 03:29:49Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Ryan Coyner <rcoyner@gmail.com>

pkgname=mod_wsgi2
pkgver=3.4
pkgrel=2
pkgdesc='Python2 WSGI adapter module for Apache'
arch=('x86_64' 'i686' 'mips64el')
url='http://www.modwsgi.org/'
license=('APACHE')
depends=('apache' 'python2')
conflicts=('mod_wsgi')
install=$pkgname.install
source=("http://modwsgi.googlecode.com/files/mod_wsgi-$pkgver.tar.gz")
sha256sums=('ae85c98e9e146840ab3c3e4490e6774f9bef0f99b9f679fca786b2adb5b4b6e8')

build() {
  cd "$srcdir/mod_wsgi-$pkgver"

  ./configure --prefix=/usr \
    --with-apxs=/usr/sbin/apxs \
    --with-python=/usr/bin/python2
  make
}

package() {
  cd "$srcdir/mod_wsgi-$pkgver"

  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: