diff options
Diffstat (limited to 'meta-oe/recipes-devtools/pmtools/pmtools_git.bb')
-rw-r--r-- | meta-oe/recipes-devtools/pmtools/pmtools_git.bb | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/meta-oe/recipes-devtools/pmtools/pmtools_git.bb b/meta-oe/recipes-devtools/pmtools/pmtools_git.bb deleted file mode 100644 index ad149de12c..0000000000 --- a/meta-oe/recipes-devtools/pmtools/pmtools_git.bb +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | DESCRIPTION = "This is a small collection of power management \ | ||
2 | test and investigation tools" | ||
3 | HOMEPAGE = "http://lesswatts.org/projects/acpi" | ||
4 | LICENSE = "GPL-2.0-or-later" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3" | ||
6 | |||
7 | PV = "20130209+git" | ||
8 | |||
9 | SRC_URI = "git://github.com/anyc/pmtools.git;branch=master;protocol=https \ | ||
10 | file://pmtools-switch-to-dynamic-buffer-for-huge-ACPI-table.patch \ | ||
11 | " | ||
12 | SRCREV = "3ebe0e54c54061b4c627236cbe35d820de2e1168" | ||
13 | |||
14 | COMPATIBLE_HOST = "(i.86|x86_64).*-linux" | ||
15 | |||
16 | S = "${WORKDIR}/git" | ||
17 | |||
18 | inherit update-alternatives | ||
19 | |||
20 | ALTERNATIVE_PRIORITY = "90" | ||
21 | ALTERNATIVE:${PN} = "acpixtract acpidump" | ||
22 | |||
23 | do_configure[noexec] = "1" | ||
24 | do_compile() { | ||
25 | oe_runmake | ||
26 | } | ||
27 | |||
28 | do_install() { | ||
29 | install -d ${D}${bindir} ${D}${docdir} | ||
30 | install -m 755 ${S}/acpidump/acpidump ${D}${bindir} | ||
31 | install -m 755 ${S}/acpixtract/acpixtract ${D}${bindir} | ||
32 | install -m 755 ${S}/madt/madt ${D}${bindir} | ||
33 | install -m 644 ${S}/README ${D}${docdir} | ||
34 | } | ||