Move all to deprecated folder.
This commit is contained in:
13
deprecated/firmware/buildroot/package/wget/Config.in
Normal file
13
deprecated/firmware/buildroot/package/wget/Config.in
Normal file
@@ -0,0 +1,13 @@
|
||||
config BR2_PACKAGE_WGET
|
||||
bool "wget"
|
||||
# fork()
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_USE_WCHAR
|
||||
help
|
||||
Network utility to retrieve files from http, https and ftp.
|
||||
|
||||
http://www.gnu.org/software/wget/
|
||||
|
||||
comment "wget needs a toolchain w/ wchar"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR
|
||||
2
deprecated/firmware/buildroot/package/wget/wget.hash
Normal file
2
deprecated/firmware/buildroot/package/wget/wget.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
sha256 fe559b61eb9cc01635ac6206a14e02cb51591838c35fa83c7a4aacae0bdd97c9 wget-1.17.1.tar.xz
|
||||
42
deprecated/firmware/buildroot/package/wget/wget.mk
Normal file
42
deprecated/firmware/buildroot/package/wget/wget.mk
Normal file
@@ -0,0 +1,42 @@
|
||||
################################################################################
|
||||
#
|
||||
# wget
|
||||
#
|
||||
################################################################################
|
||||
|
||||
WGET_VERSION = 1.17.1
|
||||
WGET_SOURCE = wget-$(WGET_VERSION).tar.xz
|
||||
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 \
|
||||
--with-libgnutls-prefix=$(STAGING_DIR)
|
||||
WGET_DEPENDENCIES += gnutls
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
WGET_CONF_OPTS += --with-ssl=openssl --with-libssl-prefix=$(STAGING_DIR)
|
||||
WGET_DEPENDENCIES += openssl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
|
||||
WGET_DEPENDENCIES += util-linux
|
||||
endif
|
||||
|
||||
# --with-ssl is default
|
||||
ifneq ($(BR2_PACKAGE_GNUTLS),y)
|
||||
ifneq ($(BR2_PACKAGE_OPENSSL),y)
|
||||
WGET_CONF_OPTS += --without-ssl
|
||||
endif
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user