diff options
Diffstat (limited to 'packages/mono/mono_1.2.5pre5.bb')
-rw-r--r-- | packages/mono/mono_1.2.5pre5.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/mono/mono_1.2.5pre5.bb b/packages/mono/mono_1.2.5pre5.bb new file mode 100644 index 0000000000..3ba24e9a5a --- /dev/null +++ b/packages/mono/mono_1.2.5pre5.bb @@ -0,0 +1,23 @@ +require mono_1.2.5pre5.inc + +#DEPENDS = "mono-native glib-2.0" +# for now, we skip the mono-native build -- just install +# mono using your distro package manager for now +# after we get the target version working, we'll worry +# about the native package for systems that don't have mono +# installed +DEPENDS = "glib-2.0" + +PR = "r3" + +SRC_URI += "file://configure.patch;patch=1" + +do_install_append() { + install -d ${D}${libdir}/mono/1.0/ + cp ${S}/mcs/class/lib/monolite/* ${D}${libdir}/mono/1.0/ +} + +PACKAGES =+ "mono-dll" +FILES_mono-dll = "${libdir}/mono/1.0/" + + |