From: Leonardo Sandoval <[email protected]> Taken from [1]. ACPICA is licensed under two main licenses: 1) An Intel license (Intel-ACPI) and 2) a dual GPL/BSP license. This recipe uses the latter.
[1] https://github.com/01org/luv-yocto/tree/master/meta-luv/recipes-extended/iasl Signed-off-by: Leonardo Sandoval <[email protected]> --- meta/recipes-extended/iasl/iasl_20150515.bb | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 meta/recipes-extended/iasl/iasl_20150515.bb diff --git a/meta/recipes-extended/iasl/iasl_20150515.bb b/meta/recipes-extended/iasl/iasl_20150515.bb new file mode 100644 index 0000000..b6b9050 --- /dev/null +++ b/meta/recipes-extended/iasl/iasl_20150515.bb @@ -0,0 +1,27 @@ +DESCRIPTION = "This is a cross development C compiler, assembler and linker environment for the production of 8086 executables (Optionally MSDOS COM)" +HOMEPAGE = "http://www.acpica.org/" +LICENSE = "GPLv2 | BSD-3-Clause" +LIC_FILES_CHKSUM = "file://source/include/acapps.h;beginline=7;endline=114;md5=9204ca6fc24d2e54f659ec512ea51f01" +SECTION = "console/tools" +PR="r1" + +DEPENDS="flex-native bison-native" + +SRC_URI="https://acpica.org/sites/acpica/files/acpica-unix-${PV}.tar.gz" + +SRC_URI[md5sum] = "c8c128b2d4859b52bc9c802faba2e908" +SRC_URI[sha256sum] = "bfa1f296a3cc13421331dbaad3b62e0184678cc312104c3e8ac799ead0742c45" + +S="${WORKDIR}/acpica-unix-${PV}" + +NATIVE_INSTALL_WORKS = "1" +BBCLASSEXTEND = "native" + +do_compile() { + make iasl +} + +do_install() { + mkdir -p ${D}${prefix}/bin + cp ${S}/generate/unix/bin/iasl ${D}${prefix}/bin +} -- 1.8.4.5 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
