diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2009-11-15 03:52:44 +0300 |
---|---|---|
committer | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2009-11-15 03:52:44 +0300 |
commit | 02676a9fbb22dfe78f45132392315736e351d187 (patch) | |
tree | 8d9b85ea742cfbfbc5bbfa4cbd8f28ed6e46bfde /recipes/libacpi/libacpi_0.2.bb | |
parent | 5d8c04d65c3335f7e440bea4bee690dce0422997 (diff) |
libacpi: steal from Poky
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Diffstat (limited to 'recipes/libacpi/libacpi_0.2.bb')
-rw-r--r-- | recipes/libacpi/libacpi_0.2.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes/libacpi/libacpi_0.2.bb b/recipes/libacpi/libacpi_0.2.bb new file mode 100644 index 0000000000..f3990306b1 --- /dev/null +++ b/recipes/libacpi/libacpi_0.2.bb @@ -0,0 +1,24 @@ +DESCRIPTION = "ACPI data gathering library." +SECTION = "base" +HOMEPAGE = "http://www.ngolde.de/libacpi.html" +LICENSE = "MIT" +PR = "r1" + +SRC_URI = "http://www.ngolde.de/download/libacpi-${PV}.tar.gz \ + file://makefile-fix.patch;patch=1 " + +PACKAGES += "${PN}-bin" + +FILES_${PN} = "${libdir}/libacpi.so.*" +FILES_${PN}-bin = "${bindir}" + +COMPATIBLE_HOST = '(x86_64|i.86.*)-(linux|freebsd.*)' + +do_stage() { + install -m 0644 libacpi.h ${STAGING_INCDIR} + oe_libinstall -so libacpi ${STAGING_LIBDIR} +} + +do_install() { + oe_runmake install DESTDIR=${D} PREFIX=${exec_prefix} +} |