summaryrefslogtreecommitdiffstats
path: root/abs/extra/mono/PKGBUILD
blob: 94ad05a25fffbb856044c7e943cc2ea82884ba44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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/
}