blob: a06397bfc430d39d9cdfe691558ac5f3a7e9a2e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
DESCRIPTION = "PowerTOP, a tool that helps you find what software is using the most power."
LICENSE = "GPLv2"
SRC_URI = "http://www.linuxpowertop.org/download/powertop-${PV}.tar.gz"
S = "${WORKDIR}/${PN}"
do_compile() {
${CC} -Wall -W -O1 -g powertop.c config.c -o powertop
}
do_install() {
install -d ${D}${bindir}
install -m 755 powertop ${D}${bindir}
}
|