wget: provides gnu-wget
So that packages like acme requiring features from it can depend on it explicitly, not the more basic "wget" which is also provided by "uclient-fetch" Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
This commit is contained in:
parent
b6212c8769
commit
99aed64005
1 changed files with 4 additions and 1 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=wget
|
||||
PKG_VERSION:=1.20.3
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
|
||||
|
@ -31,6 +31,7 @@ define Package/wget/Default
|
|||
SUBMENU:=File Transfer
|
||||
TITLE:=Non-interactive network downloader
|
||||
URL:=https://www.gnu.org/software/wget/index.html
|
||||
PROVIDES:=wget
|
||||
endef
|
||||
|
||||
define Package/wget/Default/description
|
||||
|
@ -47,6 +48,7 @@ $(call Package/wget/Default)
|
|||
DEPENDS+= +libopenssl +librt
|
||||
TITLE+= (with SSL support)
|
||||
VARIANT:=ssl
|
||||
PROVIDES+=gnu-wget
|
||||
ALTERNATIVES:=300:/usr/bin/wget:/usr/bin/wget-ssl
|
||||
endef
|
||||
|
||||
|
@ -59,6 +61,7 @@ define Package/wget-nossl
|
|||
$(call Package/wget/Default)
|
||||
TITLE+= (without SSL support)
|
||||
VARIANT:=nossl
|
||||
PROVIDES+=gnu-wget
|
||||
ALTERNATIVES:=300:/usr/bin/wget:/usr/bin/wget-nossl
|
||||
endef
|
||||
|
||||
|
|
Loading…
Reference in a new issue