diff options
author | root <root@rshg054.dnsready.net> | 2013-05-03 00:51:22 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-05-03 00:51:22 -0700 |
commit | 32b069e79cb891e99962cbac53e2950c11ea403f (patch) | |
tree | ccb58e89ee57f636178752583b6f107d0bd36a91 /community/mod_wsgi2 | |
parent | 8b09f76ed1ea968a2473faf8f56250eea0fdc3cc (diff) |
Fri May 3 00:51:21 PDT 2013
Diffstat (limited to 'community/mod_wsgi2')
-rw-r--r-- | community/mod_wsgi2/PKGBUILD | 9 | ||||
-rw-r--r-- | community/mod_wsgi2/mod_wsgi2.install | 6 |
2 files changed, 9 insertions, 6 deletions
diff --git a/community/mod_wsgi2/PKGBUILD b/community/mod_wsgi2/PKGBUILD index b408192d8..3a27e99e2 100644 --- a/community/mod_wsgi2/PKGBUILD +++ b/community/mod_wsgi2/PKGBUILD @@ -1,25 +1,26 @@ -# $Id: PKGBUILD 80683 2012-11-29 03:29:49Z arodseth $ +# $Id: PKGBUILD 89811 2013-05-02 13:55:03Z 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 +pkgrel=3 pkgdesc='Python2 WSGI adapter module for Apache' arch=('x86_64' 'i686') url='http://www.modwsgi.org/' license=('APACHE') depends=('apache' 'python2') conflicts=('mod_wsgi') -install=$pkgname.install +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 \ + ./configure \ + --prefix=/usr \ --with-apxs=/usr/sbin/apxs \ --with-python=/usr/bin/python2 make diff --git a/community/mod_wsgi2/mod_wsgi2.install b/community/mod_wsgi2/mod_wsgi2.install index d26d61631..a7f0290c2 100644 --- a/community/mod_wsgi2/mod_wsgi2.install +++ b/community/mod_wsgi2/mod_wsgi2.install @@ -1,9 +1,9 @@ post_install() { -/bin/cat << ENDOFMESSAGE + cat << ENDOFMESSAGE ==> ==> ==> To install mod_wsgi, add the following line in -==> /etc/httpd/conf/httpd.conf file : +==> /etc/httpd/conf/httpd.conf file: ==> ==> LoadModule wsgi_module modules/mod_wsgi.so ==> @@ -12,3 +12,5 @@ post_install() { ==> ENDOFMESSAGE } + +# vim:set ts=2 sw=2 et: |