summaryrefslogtreecommitdiff
path: root/extra/mod_mono
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-02-04 00:06:56 -0800
committerroot <root@rshg054.dnsready.net>2013-02-04 00:06:56 -0800
commit3e78397cb031dee2b5874f1c0c9e4c9977f0dbb7 (patch)
tree13cd29450035c478b8a064e0ff16f5a10e3fced6 /extra/mod_mono
parente363875b14479aa4c6ff12f3e4e7ed920df4e45f (diff)
Mon Feb 4 00:06:56 PST 2013
Diffstat (limited to 'extra/mod_mono')
-rw-r--r--extra/mod_mono/PKGBUILD19
1 files changed, 11 insertions, 8 deletions
diff --git a/extra/mod_mono/PKGBUILD b/extra/mod_mono/PKGBUILD
index 781714d14..55e6a1820 100644
--- a/extra/mod_mono/PKGBUILD
+++ b/extra/mod_mono/PKGBUILD
@@ -1,24 +1,27 @@
-# $Id: PKGBUILD 149083 2012-02-05 17:05:29Z daniel $
+# $Id: PKGBUILD 176977 2013-02-03 09:59:14Z allan $
# Maintainer: Daniel Isenmann <daniel@archlinux.org>
# Contributor: Tobias Kieslich <tobias@justdreams.de>
pkgname=mod_mono
pkgver=2.10
-pkgrel=2
+pkgrel=3
pkgdesc="The mono module to make ASP.NET running on top of apache"
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
+url="http://www.go-mono.com"
license=('APACHE')
depends=('apache>=2.2.11' 'xsp')
-url="http://www.go-mono.com"
-install=${pkgname}.install
source=(http://ftp.novell.com/pub/mono/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
md5sums=('422c533a0dfbd699eb6339234261150a')
build() {
- cd ${startdir}/src/${pkgname}-${pkgver}
+ cd ${srcdir}/${pkgname}-${pkgver}
CFLAGS="${CFLAGS} `apr-1-config --cppflags --includes --cflags`" ./configure \
--prefix=/usr --sysconfdir=/etc --with-apxs=/usr/sbin/apxs \
--with-mono-prefix=/usr --with-apr-config=/usr/bin/apr-1-config
- make || return 1
- make DESTDIR=${startdir}/pkg install
+ make
+}
+
+package() {
+ cd ${srcdir}//${pkgname}-${pkgver}
+ make DESTDIR=${pkgdir}/ install
}