Date: Monday, October 6, 2014 @ 23:26:27 Author: daniel Revision: 223938
upgpkg: mod_mono 3.8-1 New upstream release Modified: mod_mono/trunk/PKGBUILD ----------+ PKGBUILD | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2014-10-06 20:37:03 UTC (rev 223937) +++ PKGBUILD 2014-10-06 21:26:27 UTC (rev 223938) @@ -3,21 +3,18 @@ # Contributor: Tobias Kieslich <[email protected]> pkgname=mod_mono -pkgver=2.10 -pkgrel=4 +pkgver=3.8 +pkgrel=1 pkgdesc="The mono module to make ASP.NET running on top of apache" arch=('i686' 'x86_64') url="http://www.go-mono.com" license=('APACHE') +source=(http://download.mono-project.com/sources/mod_mono/${pkgname}-${pkgver}.tar.gz) depends=('apache' 'xsp') -_sha1=6b73e850920865b8f6a16f232e555c71ec1cd26a -# There is some unreleased support for Apache2.4 in official github repo -source=(https://github.com/mono/mod_mono/archive/$_sha1.zip) -md5sums=('2ff278fb418a8eecb275846a05fbfcf1') +md5sums=('f25198bb2dce0448c26977170c5a5602') build() { - cd ${pkgname}-${_sha1} - ./autogen.sh + cd ${srcdir}/${pkgname}-${pkgver} CFLAGS="${CFLAGS} `apr-1-config --cppflags --includes --cflags`" ./configure \ --prefix=/usr --sysconfdir=/etc --with-apxs=/usr/bin/apxs \ --with-mono-prefix=/usr --with-apr-config=/usr/bin/apr-1-config @@ -25,6 +22,7 @@ } package() { - cd ${pkgname}-${_sha1} + cd ${srcdir}/${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install } +
