blob: 5baeac924f3e7d578dc30d269cf4795bff456817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION = "orc - The Oil Runtime Compiler"
HOMEPAGE = "http://code.entropywave.com/projects/orc/"
LICENSE = "orc"
SRC_URI = "http://code.entropywave.com/download/orc/orc-${PV}.tar.gz;name=orc"
inherit autotools pkgconfig
BBCLASSEXTEND = "native"
PACKAGES =+ "orc-examples"
FILES_orc-examples = "${libdir}/orc/*"
FILES_${PN} = "${bindir}/*"
python populate_packages_prepend () {
libdir = bb.data.expand('${libdir}', d)
do_split_packages(d, libdir, '^lib(.*)\.so\.*', 'lib%s', 'ORC %s library', extra_depends='', allow_links=True)
}
do_compile_prepend_virtclass-native () {
sed -i -e 's#/tmp#.#g' ${S}/orc/orccodemem.c
}
|