diff options
| author | Mihai Prica <mihai.prica@intel.com> | 2012-11-15 11:03:35 +0200 |
|---|---|---|
| committer | Raymond Danks <ray.danks@se-eng.com> | 2012-11-26 16:21:15 -0700 |
| commit | 7d892eefc1bc588ebecc99bc2f2fbf74372d2569 (patch) | |
| tree | d0a8b99fc8821641a52b8b00e767909d6ae86683 | |
| parent | bcb7695add9edfc6fd217d2d00758fc59e3487d1 (diff) | |
| download | meta-virtualization-7d892eefc1bc588ebecc99bc2f2fbf74372d2569.tar.gz | |
iasl: Added recipe for package
Signed-off-by: Mihai Prica <mihai.prica@intel.com>
Signed-off-by: Raymond Danks <ray.danks@se-eng.com>
| -rw-r--r-- | recipes-extended/iasl/iasl_20120215.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes-extended/iasl/iasl_20120215.bb b/recipes-extended/iasl/iasl_20120215.bb new file mode 100644 index 00000000..9474e563 --- /dev/null +++ b/recipes-extended/iasl/iasl_20120215.bb | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | DESCRIPTION = "This is a cross development C compiler, assembler and linker environment for the production of 8086 executables (Optionally MSDOS COM)" | ||
| 2 | HOMEPAGE = "http://www.acpica.org/" | ||
| 3 | LICENSE = "Intel" | ||
| 4 | LIC_FILES_CHKSUM = "file://asldefine.h;endline=115;md5=d4d7cf809b8b5e03131327b3f718e8f0" | ||
| 5 | SECTION = "console/tools" | ||
| 6 | PR="r0" | ||
| 7 | |||
| 8 | DEPENDS="flex bison" | ||
| 9 | |||
| 10 | SRC_URI="http://www.acpica.org/download/acpica-unix-${PV}.tar.gz" | ||
| 11 | |||
| 12 | SRC_URI[md5sum] = "324c89e5bb9002e2711e0494290ceacc" | ||
| 13 | SRC_URI[sha256sum] = "b2b497415f29ddbefe7be8b9429b62c1f1f6e1ec11456928e4e7da86578e5b8d" | ||
| 14 | |||
| 15 | S="${WORKDIR}/acpica-unix-${PV}/source/compiler" | ||
| 16 | |||
| 17 | NATIVE_INSTALL_WORKS = "1" | ||
| 18 | BBCLASSEXTEND = "native" | ||
| 19 | |||
| 20 | do_compile() { | ||
| 21 | CFLAGS= $MAKE | ||
| 22 | } | ||
| 23 | |||
| 24 | do_install() { | ||
| 25 | mkdir -p ${D}${prefix}/bin | ||
| 26 | cp ${S}/iasl ${D}${prefix}/bin | ||
| 27 | } | ||
| 28 | |||
| 29 | |||
