update buildroot to 2017.02.11
This commit is contained in:
40
bsp/buildroot-2017.02.11/package/wget/wget.mk
Normal file
40
bsp/buildroot-2017.02.11/package/wget/wget.mk
Normal file
@@ -0,0 +1,40 @@
|
||||
################################################################################
|
||||
#
|
||||
# wget
|
||||
#
|
||||
################################################################################
|
||||
|
||||
WGET_VERSION = 1.19.2
|
||||
WGET_SOURCE = wget-$(WGET_VERSION).tar.lz
|
||||
WGET_SITE = $(BR2_GNU_MIRROR)/wget
|
||||
WGET_DEPENDENCIES = host-pkgconf
|
||||
WGET_LICENSE = GPLv3+
|
||||
WGET_LICENSE_FILES = COPYING
|
||||
|
||||
# Prefer full-blown wget over busybox
|
||||
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
|
||||
WGET_DEPENDENCIES += busybox
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
||||
WGET_CONF_OPTS += --with-ssl=gnutls
|
||||
WGET_DEPENDENCIES += gnutls
|
||||
else ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
WGET_CONF_OPTS += --with-ssl=openssl
|
||||
WGET_DEPENDENCIES += openssl
|
||||
else
|
||||
WGET_CONF_OPTS += --without-ssl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
|
||||
WGET_DEPENDENCIES += util-linux
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
||||
WGET_CONF_OPTS += --with-zlib
|
||||
WGET_DEPENDENCIES += zlib
|
||||
else
|
||||
WGET_CONF_OPTS += --without-zlib
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user