7b0e757fb8
The recommended form is without the trailing slash, and will become mandatory in a coming commit. This avoids the need for the $$($(2)_SITE:/=) magic in package/pkg-generic.mk to avoid double slashes in download URLs, like "https://mosh.mit.edu//mosh-1.2.5.tar.gz". ^^ Note: this work has already been done inb0b9606530
a few months ago and earlier inc7f4b96471
and4a9eb20de8
, but no check has been added at that time to avoid new slashes to slip in, and so they did. This time a patch will follow immediately to prevent future mistakes from being unnoticed. Mass-replaced with the following command: git grep -l '_SITE.*/$' | xargs sed -i '/_SITE.*=/s|/$||' Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
30 lines
867 B
Makefile
30 lines
867 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 = GPLv2
|
|
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))
|