01048deab6
Remove upstream patch, so we don't need to autoreconf Rename patch 0002 -> 0001 Add POWERTOP_SOURCE to adjust to the new archive naming. Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
28 lines
843 B
Makefile
28 lines
843 B
Makefile
################################################################################
|
|
#
|
|
# powertop
|
|
#
|
|
################################################################################
|
|
|
|
POWERTOP_VERSION = 2.9
|
|
POWERTOP_SITE = https://01.org/sites/default/files/downloads/powertop
|
|
POWERTOP_SOURCE = powertop-v$(POWERTOP_VERSION).tar.gz
|
|
POWERTOP_DEPENDENCIES = pciutils ncurses libnl host-gettext host-pkgconf
|
|
POWERTOP_LICENSE = GPL-2.0
|
|
POWERTOP_LICENSE_FILES = COPYING
|
|
|
|
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))
|