diff options
author | Fathi Boudra <fathi.boudra@linaro.org> | 2013-08-26 10:33:14 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-09-03 19:12:36 +0200 |
commit | b9cb33ca4dc99e24dabac56b61a4fffe28c74193 (patch) | |
tree | 9b6a3af86bac5f33c3b853b77a0c1f3170a013ef | |
parent | 24fd2dc97991f972fed128c2529b6d149ec0f9da (diff) | |
download | meta-openembedded-b9cb33ca4dc99e24dabac56b61a4fffe28c74193.tar.gz |
acpica: fix recipe to be OE compliant with spacing
Signed-off-by: Graeme Gregory <graeme.gregory@linaro.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/acpica/acpica_20130626.bb | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/meta-oe/recipes-extended/acpica/acpica_20130626.bb b/meta-oe/recipes-extended/acpica/acpica_20130626.bb index bf38fa3a1e..af0dd45584 100644 --- a/meta-oe/recipes-extended/acpica/acpica_20130626.bb +++ b/meta-oe/recipes-extended/acpica/acpica_20130626.bb | |||
@@ -1,21 +1,18 @@ | |||
1 | SUMMARY = "ACPICA tools for the development and debug of ACPI tables" | ||
1 | DESCRIPTION = "The ACPI Component Architecture (ACPICA) project provides an \ | 2 | DESCRIPTION = "The ACPI Component Architecture (ACPICA) project provides an \ |
2 | OS-independent reference implementation of the Advanced Configuration and \ | 3 | OS-independent reference implementation of the Advanced Configuration and \ |
3 | Power Interface Specification (ACPI). ACPICA code contains those portions of \ | 4 | Power Interface Specification (ACPI). ACPICA code contains those portions of \ |
4 | ACPI meant to be directly integrated into the host OS as a kernel-resident \ | 5 | ACPI meant to be directly integrated into the host OS as a kernel-resident \ |
5 | subsystem, and a small set of tools to assist in developing and debugging \ | 6 | subsystem, and a small set of tools to assist in developing and debugging \ |
6 | ACPI tables." | 7 | ACPI tables." |
7 | SUMMARY = "ACPICA tools for the development and debug of ACPI tables" | ||
8 | HOMEPAGE = "http://www.acpica.org/" | 8 | HOMEPAGE = "http://www.acpica.org/" |
9 | SECTION = "console/tools" | 9 | SECTION = "console/tools" |
10 | LICENSE = "BSD | GPLv2" | 10 | LICENSE = "BSD | GPLv2" |
11 | LIC_FILES_CHKSUM = "file://generate/unix/readme.txt;md5=204407e197c1a01154a48f6c6280c3aa" | 11 | LIC_FILES_CHKSUM = "file://generate/unix/readme.txt;md5=204407e197c1a01154a48f6c6280c3aa" |
12 | DEPENDS="bison \ | 12 | DEPENDS = "bison flex" |
13 | flex" | ||
14 | COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" | ||
15 | |||
16 | PR="r1" | 13 | PR="r1" |
17 | 14 | ||
18 | SRC_URI="https://acpica.org/sites/acpica/files/acpica-unix2-${PV}.tar.gz \ | 15 | SRC_URI = "https://acpica.org/sites/acpica/files/acpica-unix2-${PV}.tar.gz \ |
19 | file://cross-compile.patch \ | 16 | file://cross-compile.patch \ |
20 | file://no-werror.patch \ | 17 | file://no-werror.patch \ |
21 | file://fix-parallel-build.patch" | 18 | file://fix-parallel-build.patch" |
@@ -23,7 +20,7 @@ SRC_URI="https://acpica.org/sites/acpica/files/acpica-unix2-${PV}.tar.gz \ | |||
23 | SRC_URI[md5sum] = "b7112b3deffef8fe25aac7810cc419a9" | 20 | SRC_URI[md5sum] = "b7112b3deffef8fe25aac7810cc419a9" |
24 | SRC_URI[sha256sum] = "888dda6227265c396a686624f971c51693c2bba84f24c634536234c8dca7b465" | 21 | SRC_URI[sha256sum] = "888dda6227265c396a686624f971c51693c2bba84f24c634536234c8dca7b465" |
25 | 22 | ||
26 | S="${WORKDIR}/acpica-unix2-${PV}" | 23 | S = "${WORKDIR}/acpica-unix2-${PV}" |
27 | 24 | ||
28 | EXTRA_OEMAKE = "'OPT_CFLAGS=-Wall'" | 25 | EXTRA_OEMAKE = "'OPT_CFLAGS=-Wall'" |
29 | 26 | ||
@@ -36,3 +33,5 @@ do_install() { | |||
36 | install -D -p -m0755 generate/unix/bin*/acpisrc ${D}${bindir}/acpisrc | 33 | install -D -p -m0755 generate/unix/bin*/acpisrc ${D}${bindir}/acpisrc |
37 | install -D -p -m0755 generate/unix/bin*/acpixtract ${D}${bindir}/acpixtract | 34 | install -D -p -m0755 generate/unix/bin*/acpixtract ${D}${bindir}/acpixtract |
38 | } | 35 | } |
36 | |||
37 | COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" | ||