diff options
Diffstat (limited to 'community/passenger/PKGBUILD')
-rw-r--r-- | community/passenger/PKGBUILD | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/community/passenger/PKGBUILD b/community/passenger/PKGBUILD index 0acb70cea..b32b989fb 100644 --- a/community/passenger/PKGBUILD +++ b/community/passenger/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 94307 2013-07-19 15:21:45Z spupykin $ +# $Id: PKGBUILD 96150 2013-08-20 11:37:13Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=passenger -pkgver=4.0.10 +pkgver=4.0.14 pkgrel=1 pkgdesc="mod_rails passenger" arch=('i686' 'x86_64') @@ -14,13 +14,15 @@ makedepends=('apache') install=passenger.install options=('!emptydirs') source=($pkgname-$pkgver.tar.gz::https://github.com/FooBarWidget/passenger/archive/release-$pkgver.tar.gz) -md5sums=('a30ec12f12923aedd42ed2747903f65a') +md5sums=('064ba40c29364351e2a67c2ac6a13ce4') -build(){ +prepare() { cd $srcdir/passenger-release-$pkgver + sed -i '1,1i#include <stdint.h>' ext/common/Utils/MD5.cpp +} -# sed -i 's/env python/env python2/' lib/phusion_passenger/wsgi/request_handler.py - +build(){ + cd $srcdir/passenger-release-$pkgver ./bin/passenger-install-apache2-module -a rake nginx } |