diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-11-05 14:00:27 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-11-05 14:00:27 +0000 |
commit | e3a7dc7e9187c9b9f9d76354b5092acb9941fbeb (patch) | |
tree | 3a6b719a763bb9d945d9e8648e6d8bc961266ac8 | |
parent | 7c2d86859defc62e0e79165d706e0dc7c3ee5458 (diff) | |
parent | 945cb1a9debbd3762e79833428c098caf642c983 (diff) |
merge of '1eb03bbc471949379b938272d92c72d53e7dbd66'
and '834b1d3768e14c34c382aac26ffc80848dc8c213'
-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} +} |