diff options
author | James Meyer <james.meyer@operamail.com> | 2009-03-14 17:45:02 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-03-14 17:45:02 (GMT) |
commit | 91e7e1105b837173adacd6ca1489cd2814c1ccf7 (patch) | |
tree | a9e32d1aef13b10930ccfc697b59f689e8007441 /abs/extra-testing/mono/PKGBUILD | |
parent | ad9a6e9be1f0af2a5c15d4f05e1aa4c9d561e9f0 (diff) | |
download | linhes_pkgbuild-91e7e1105b837173adacd6ca1489cd2814c1ccf7.zip linhes_pkgbuild-91e7e1105b837173adacd6ca1489cd2814c1ccf7.tar.gz linhes_pkgbuild-91e7e1105b837173adacd6ca1489cd2814c1ccf7.tar.bz2 |
Missing makedepends for avahi.
gtk-sharp2
libgdiplus
mono
Diffstat (limited to 'abs/extra-testing/mono/PKGBUILD')
-rw-r--r-- | abs/extra-testing/mono/PKGBUILD | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/abs/extra-testing/mono/PKGBUILD b/abs/extra-testing/mono/PKGBUILD new file mode 100644 index 0000000..94ad05a --- /dev/null +++ b/abs/extra-testing/mono/PKGBUILD @@ -0,0 +1,47 @@ +# $Id: PKGBUILD 25123 2009-01-23 17:05:04Z daniel $ +# Maintainer: Daniel Isenmann <daniel@archlinux.org> +# Contributor: Brice Carpentier <brice@dlfp.org> + +pkgname=mono +pkgver=2.2 +pkgrel=1 +pkgdesc="Free implementation of the .NET platform including runtime and compiler" +arch=(i686 x86_64) +license=('GPL' 'LGPL2' 'MPL' 'custom:MITX11') +url="http://www.mono-project.com/" +depends=('zlib' 'libgdiplus>=2.2') +makedepends=('pkgconfig' 'bison') +options=('!libtool' '!makeflags') +provides=('monodoc') +conflicts=('monodoc') +source=(http://www.go-mono.com/sources/${pkgname}/${pkgname}-${pkgver}.tar.bz2 + mono.rc.d) +md5sums=('da147e24d14a73d8ad52775dd4a3d165' + '8315e46c6a6e9625502521fc0ad1a322') + +build() { + # get rid of that .wapi errors; thanks to brice + export MONO_SHARED_DIR=${startdir}/src/weird + mkdir -p "${MONO_SHARED_DIR}" + mkdir -p ${startdir}/pkg/usr/share/licenses/$pkgname + # build mono + cd ${startdir}/src/${pkgname}-${pkgver} + rm -f libgc/libtool.m4 + autoreconf --force --install + autoreconf --force --install libgc + ./configure --prefix=/usr --sysconfdir=/etc \ + --with-libgdiplus=installed --with-icu=no \ + --with-tls=pthread --with-jit=yes --with-preview=yes \ + --with-sigaltstack=yes --enable-nunit-tests \ + --with-moonlight=yes + make || return 1 + sed -i "/NO_INSTALL = yes/d" mcs/nunit20/nunit-console/Makefile + make DESTDIR=${startdir}/pkg install + + # install daemons and pathes + mkdir -p ${startdir}/pkg/etc/rc.d + install -m755 ${startdir}/src/mono.rc.d $startdir/pkg/etc/rc.d/mono + + #install license + install -m644 mcs/MIT.X11 ${startdir}/pkg/usr/share/licenses/$pkgname/ +} |