blob: 88a59e9e570289fe07c98511ba2c59a7c4d2204e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require powertop.inc
SRCREV = "332"
PV = "1.12+svnr${SRCPV}"
PR = "${INC_PR}.0"
SRC_URI = "svn://powertop.googlecode.com/svn;module=trunk;proto=http"
SRC_URI_append_omap3 = " file://omap-svn.patch;apply=yes"
S = "${WORKDIR}/trunk"
CFLAGS_append_omap3 = " -DOMAP3"
do_configure() {
# We do not build ncurses with wide char support
sed -i -e "s/lncursesw/lncurses/" ${S}/Makefile
}
|