summaryrefslogtreecommitdiffstats
path: root/test/mono/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'test/mono/Pkgfile')
-rw-r--r--test/mono/Pkgfile24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/mono/Pkgfile b/test/mono/Pkgfile
new file mode 100644
index 000000000..1064034f5
--- /dev/null
+++ b/test/mono/Pkgfile
@@ -0,0 +1,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
+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
+}