diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-11-25 18:28:58 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-03 17:45:52 +0000 |
commit | 79db9ae2b5fbb78e7fea91add1771023fc8c332a (patch) | |
tree | db888b8fe570decca2ce4d8ef780bfa75addfc6a /meta/recipes-bsp | |
parent | 9dfcab391b4026391d0f97b57666cc023bdaf17d (diff) | |
download | poky-79db9ae2b5fbb78e7fea91add1771023fc8c332a.tar.gz |
eee-acpi-scripts: tidy up recipe
* Set SUMMARY instead of DESCRIPTION
* Move packaging variables to the end
* Fix spacing in LICENSE assignment
* Fix indenting
(From OE-Core rev: 92f10f733a93f1772636603c0e910daf3eb9ff42)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp')
-rw-r--r-- | meta/recipes-bsp/eee-acpi-scripts/eee-acpi-scripts_git.bb | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/meta/recipes-bsp/eee-acpi-scripts/eee-acpi-scripts_git.bb b/meta/recipes-bsp/eee-acpi-scripts/eee-acpi-scripts_git.bb index 5f613f6575..c2a02aadbb 100644 --- a/meta/recipes-bsp/eee-acpi-scripts/eee-acpi-scripts_git.bb +++ b/meta/recipes-bsp/eee-acpi-scripts/eee-acpi-scripts_git.bb | |||
@@ -1,15 +1,13 @@ | |||
1 | DESCRIPTION = "eeePC specific ACPI scripts" | 1 | SUMMARY = "eeePC specific ACPI scripts" |
2 | HOMEPAGE = "http://alioth.debian.org/projects/debian-eeepc/" | 2 | HOMEPAGE = "http://alioth.debian.org/projects/debian-eeepc/" |
3 | SECTION = "base" | 3 | SECTION = "base" |
4 | 4 | ||
5 | LICENSE="GPLv2" | 5 | LICENSE = "GPLv2" |
6 | LIC_FILES_CHKSUM = "file://debian/copyright;md5=77ef83ab5f4af938a93edb61f7b74f2c" | 6 | LIC_FILES_CHKSUM = "file://debian/copyright;md5=77ef83ab5f4af938a93edb61f7b74f2c" |
7 | 7 | ||
8 | SRCREV = "9d4cdedca25b396405f8587f9c4fbf8229e041c2" | 8 | SRCREV = "9d4cdedca25b396405f8587f9c4fbf8229e041c2" |
9 | PV = "1.1.12+git${SRCPV}" | 9 | PV = "1.1.12+git${SRCPV}" |
10 | 10 | ||
11 | RDEPENDS_${PN} = "pm-utils" | ||
12 | |||
13 | SRC_URI = "git://git.debian.org/git/debian-eeepc/eeepc-acpi-scripts.git \ | 11 | SRC_URI = "git://git.debian.org/git/debian-eeepc/eeepc-acpi-scripts.git \ |
14 | file://remove-doc-check.patch \ | 12 | file://remove-doc-check.patch \ |
15 | file://powerbtn.patch \ | 13 | file://powerbtn.patch \ |
@@ -18,9 +16,9 @@ SRC_URI = "git://git.debian.org/git/debian-eeepc/eeepc-acpi-scripts.git \ | |||
18 | S = "${WORKDIR}/git" | 16 | S = "${WORKDIR}/git" |
19 | 17 | ||
20 | FILES_${PN} = "${datadir}/acpi-support/ \ | 18 | FILES_${PN} = "${datadir}/acpi-support/ \ |
21 | ${datadir}/eeepc-acpi-scripts \ | 19 | ${datadir}/eeepc-acpi-scripts \ |
22 | ${sysconfdir}/default/ \ | 20 | ${sysconfdir}/default/ \ |
23 | ${sysconfdir}/acpi/" | 21 | ${sysconfdir}/acpi/" |
24 | 22 | ||
25 | do_install () { | 23 | do_install () { |
26 | install -d ${D}${sysconfdir}/default/ | 24 | install -d ${D}${sysconfdir}/default/ |
@@ -36,3 +34,6 @@ do_install () { | |||
36 | install -m 0644 ${WORKDIR}/policy-funcs ${D}${datadir}/acpi-support/ | 34 | install -m 0644 ${WORKDIR}/policy-funcs ${D}${datadir}/acpi-support/ |
37 | install -m 0644 ${S}/debian/eeepc-acpi-scripts.default* ${D}${sysconfdir}/default/ | 35 | install -m 0644 ${S}/debian/eeepc-acpi-scripts.default* ${D}${sysconfdir}/default/ |
38 | } | 36 | } |
37 | |||
38 | RDEPENDS_${PN} = "pm-utils" | ||
39 | |||