wget: update to 1.20.1
[feed/packages.git] / net / wget / Makefile
1 #
2 # Copyright (C) 2007-2016 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=wget
11 PKG_VERSION:=1.20.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
16 PKG_HASH:=b783b390cb571c837b392857945f5a1f00ec6b043177cc42abb8ee1b542ee1b3
17 PKG_MAINTAINER:=Peter Wagner <tripolar@gmx.at>
18 PKG_LICENSE:=GPL-3.0+
19 PKG_LICENSE_FILES:=COPYING
20
21 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/wget/Default
26 SECTION:=net
27 CATEGORY:=Network
28 DEPENDS:=+libpcre +zlib
29 SUBMENU:=File Transfer
30 TITLE:=Non-interactive network downloader
31 URL:=https://www.gnu.org/software/wget/index.html
32 endef
33
34 define Package/wget/Default/description
35 Wget is a network utility to retrieve files from the Web using http
36 and ftp, the two most widely used Internet protocols. It works
37 non-interactively, so it will work in the background, after having
38 logged off. The program supports recursive retrieval of web-authoring
39 pages as well as ftp sites -- you can use wget to make mirrors of
40 archives and home pages or to travel the Web like a WWW robot.
41 endef
42
43 define Package/wget
44 $(call Package/wget/Default)
45 DEPENDS+= +libopenssl +librt
46 TITLE+= (with SSL support)
47 VARIANT:=ssl
48 endef
49
50 define Package/wget/description
51 $(call Package/wget/Default/description)
52 This package is built with SSL support.
53 endef
54
55 define Package/wget-nossl
56 $(call Package/wget/Default)
57 TITLE+= (without SSL support)
58 VARIANT:=nossl
59 endef
60
61 define Package/wget-nossl/description
62 $(call Package/wget/Default/description)
63 This package is built without SSL support.
64 endef
65
66 CONFIGURE_ARGS+= \
67 --disable-rpath \
68 --disable-iri \
69 --disable-pcre2 \
70 --with-included-libunistring \
71 --without-libuuid \
72 --without-libpsl
73
74 CONFIGURE_VARS += \
75 ac_cv_header_uuid_uuid_h=no
76
77 ifeq ($(BUILD_VARIANT),ssl)
78 CONFIGURE_ARGS+= \
79 --with-ssl=openssl \
80 --with-libssl-prefix="$(STAGING_DIR)/usr"
81 endif
82
83 ifeq ($(BUILD_VARIANT),nossl)
84 CONFIGURE_ARGS+= \
85 --disable-ntlm \
86 --without-ssl
87 endif
88
89 define Package/wget/install
90 $(INSTALL_DIR) $(1)/usr/bin
91 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/wget $(1)/usr/bin/wget-ssl
92 ln -sf wget-ssl $(1)/usr/bin/wget
93 endef
94
95 define Package/wget-nossl/install
96 $(INSTALL_DIR) $(1)/usr/bin
97 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/wget $(1)/usr/bin/wget-nossl
98 ln -sf wget-nossl $(1)/usr/bin/wget
99 endef
100
101 $(eval $(call BuildPackage,wget))
102 $(eval $(call BuildPackage,wget-nossl))