diff options
author | Stelios Koroneos <skoroneos@digital-opsis.com> | 2007-11-05 15:09:52 +0000 |
---|---|---|
committer | Stelios Koroneos <skoroneos@digital-opsis.com> | 2007-11-05 15:09:52 +0000 |
commit | 7a91e35f51b5131ff015ac9dd7b9f7d63fbd4a5f (patch) | |
tree | a0feda7a9961a8eaf6ce3d61ce8cf39e071d1360 /packages | |
parent | d6199e5f3be8776551c289472f6593b02d74474a (diff) | |
parent | e3a7dc7e9187c9b9f9d76354b5092acb9941fbeb (diff) |
merge of '5375fc74346cb588fda63467cc2a6d8152472b3c'
and 'f877dae893a9428cb0be862854abd3c3eac0d924'
Diffstat (limited to 'packages')
-rw-r--r-- | packages/powertop/powertop_1.9.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/powertop/powertop_1.9.bb b/packages/powertop/powertop_1.9.bb new file mode 100644 index 0000000000..ab84161ddc --- /dev/null +++ b/packages/powertop/powertop_1.9.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "PowerTOP, a tool that helps you find what software is using the most power." +HOMEPAGE = "http://www.linuxpowertop.org/" +LICENSE = "GPLv2" +DEPENDS = "ncurses" + +SRC_URI = "http://www.linuxpowertop.org/download/powertop-${PV}.tar.gz" + +CFLAGS += "${LDFLAGS}" + +do_configure() { + # We do not build ncurses with wide char support + sed -i -e "s/lncursesw/lncurses/" ${S}/Makefile +} + +do_install() { + oe_runmake install DESTDIR=${D} +} |