diff options
author | Eblis <eblis102@gmail.com> | 2007-02-07 08:26:23 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-02-07 08:26:23 +0000 |
commit | 7f5ca0340d1387c3a1121bd1dd2a81d2e9364fdb (patch) | |
tree | d08c1864a50321631196d592dec859cd1482640c /packages/mono/mono_1.2.2.1.bb | |
parent | 7a8143305405433b9281348ba1ba696716817138 (diff) |
mono: add 1.2.2.1
* only works on arm
* closes #1853
Diffstat (limited to 'packages/mono/mono_1.2.2.1.bb')
-rw-r--r-- | packages/mono/mono_1.2.2.1.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/mono/mono_1.2.2.1.bb b/packages/mono/mono_1.2.2.1.bb new file mode 100644 index 0000000000..f786001627 --- /dev/null +++ b/packages/mono/mono_1.2.2.1.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "Mono Programming Language" +SECTION = "devel/mono" +LICENSE = "GPL LGPL X11" +DEPENDS = "mono-native glib-2.0" + +#We only have a cpu-${arch}.h from arm, so let's mask out non-working architectures +COMPATIBLE_HOST = "arm.*-linux" + +SRC_URI = "http://go-mono.com/sources/mono/mono-${PV}.tar.gz \ + file://cpu-arm.h" + +inherit autotools + +EXTRA_OECONF = "--disable-mcs-build" +EXTRA_OECONF_arm = "--without-tls" + +do_compile_prepend() { + cp ${WORKDIR}/cpu-arm.h ${S}/mono/mini/ +} |