mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-07 14:44:41 +02:00
We need to run orcc on the host. Signed-off-by: Philip Balister <philip@balister.org> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
26 lines
727 B
PHP
26 lines
727 B
PHP
DESCRIPTION = "orc - The Oil Runtime Compiler"
|
|
HOMEPAGE = "http://code.entropywave.com/projects/orc/"
|
|
LICENSE = "orc"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=1400bd9d09e8af56b9ec982b3d85797e"
|
|
|
|
INC_PR = "r1"
|
|
|
|
SRC_URI = "http://code.entropywave.com/download/orc/orc-${PV}.tar.gz;name=orc"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
PACKAGES =+ "orc-examples"
|
|
FILES_orc-examples = "${libdir}/orc/*"
|
|
FILES_${PN} = "${bindir}/*"
|
|
|
|
python populate_packages_prepend () {
|
|
libdir = d.expand('${libdir}')
|
|
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
|
|
}
|