diff options
author | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:17:40 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2010-10-23 18:19:39 (GMT) |
commit | adbcf19958300e9b6598990184c8815b945ba0ee (patch) | |
tree | f4283c850ac0ac202c17e78a637ee7ca8147621b /abs/extra-testing/mono/PKGBUILD | |
parent | 61a68250df10d29b624650948484898334ff22d0 (diff) | |
download | linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2 |
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/extra-testing/mono/PKGBUILD')
-rw-r--r-- | abs/extra-testing/mono/PKGBUILD | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/abs/extra-testing/mono/PKGBUILD b/abs/extra-testing/mono/PKGBUILD deleted file mode 100644 index 94ad05a..0000000 --- a/abs/extra-testing/mono/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# $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/ -} |