summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/pmtools/pmtools_git.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-devtools/pmtools/pmtools_git.bb')
-rw-r--r--meta-oe/recipes-devtools/pmtools/pmtools_git.bb34
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 @@
1DESCRIPTION = "This is a small collection of power management \
2 test and investigation tools"
3HOMEPAGE = "http://lesswatts.org/projects/acpi"
4LICENSE = "GPL-2.0-or-later"
5LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
6
7PV = "20130209+git"
8
9SRC_URI = "git://github.com/anyc/pmtools.git;branch=master;protocol=https \
10 file://pmtools-switch-to-dynamic-buffer-for-huge-ACPI-table.patch \
11"
12SRCREV = "3ebe0e54c54061b4c627236cbe35d820de2e1168"
13
14COMPATIBLE_HOST = "(i.86|x86_64).*-linux"
15
16S = "${WORKDIR}/git"
17
18inherit update-alternatives
19
20ALTERNATIVE_PRIORITY = "90"
21ALTERNATIVE:${PN} = "acpixtract acpidump"
22
23do_configure[noexec] = "1"
24do_compile() {
25 oe_runmake
26}
27
28do_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}