af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
30 lines
869 B
Makefile
30 lines
869 B
Makefile
################################################################################
|
|
#
|
|
# powertop
|
|
#
|
|
################################################################################
|
|
|
|
POWERTOP_VERSION = 2.7
|
|
POWERTOP_SITE = https://01.org/sites/default/files/downloads/powertop
|
|
POWERTOP_DEPENDENCIES = pciutils ncurses libnl host-gettext host-pkgconf
|
|
POWERTOP_LICENSE = GPL-2.0
|
|
POWERTOP_LICENSE_FILES = COPYING
|
|
# We're patching Makefile.am
|
|
POWERTOP_AUTORECONF = YES
|
|
POWERTOP_GETTEXTIZE = YES
|
|
|
|
ifeq ($(BR2_NEEDS_GETTEXT),y)
|
|
POWERTOP_DEPENDENCIES += gettext
|
|
POWERTOP_CONF_ENV += LIBS='-lintl'
|
|
endif
|
|
|
|
# Help powertop at finding the right ncurses library depending on
|
|
# which one is available.
|
|
ifeq ($(BR2_PACKAGE_NCURSES_WCHAR),y)
|
|
POWERTOP_CONF_ENV += ac_cv_search_delwin="-lncursesw"
|
|
else
|
|
POWERTOP_CONF_ENV += ac_cv_search_delwin="-lncurses"
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|