blob: b7498baf39d455c13122dcc569def9cd20656e4b (
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
|
# Description: Implémentation de .NET
# URL: http://www.mono-project.com/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: glib
name=mono
version=2.4.3
release=1
source=(http://www.go-mono.com/sources/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--with-libgdiplus=installed --with-icu=no \
--with-tls=pthread --with-jit=yes --with-preview=yes \
--with-sigaltstack=yes,no --enable-nunit-tests
make -j2
# sed -i "/NO_INSTALL = yes/d" mcs/nunit20/nunit-console/Makefile
make DESTDIR=$PKG install
}
|