blob: c0a4cfb223813903e5b620d853c8969fb57e4f65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require mono_1.2.5.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 = "r0"
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/"
|