c7f4b96471
Since the trailing slash is stripped from $($(PKG)_SITE) by pkg-generic.mk: $(call DOWNLOAD,$($(PKG)_SITE:/=)/$($(PKG)_SOURCE)) so it is redundant. This patch removes it from $(PKG)_SITE variable for BR consistency. Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
523 B
Makefile
19 lines
523 B
Makefile
################################################################################
|
|
#
|
|
# bwm-ng
|
|
#
|
|
################################################################################
|
|
|
|
BWM_NG_VERSION = 0.6
|
|
BWM_NG_SITE = http://downloads.sourceforge.net/project/bwmng/bwmng/$(BWM_NG_VERSION)
|
|
BWM_NG_CONF_OPT = --with-procnetdev --with-diskstats
|
|
BWM_NG_LICENSE = GPLv2
|
|
BWM_NG_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES),y)
|
|
BWM_NG_CONF_OPT += --with-ncurses
|
|
BWM_NG_DEPENDENCIES += ncurses
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|