6ea9d16ba74ad3b656dccb917ba9136ce0c80295
[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:=2
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 ALTERNATIVES:=300:/usr/bin/wget:/usr/bin/wget-ssl
49 endef
50
51 define Package/wget/description
52 $(call Package/wget/Default/description)
53 This package is built with SSL support.
54 endef
55
56 define Package/wget-nossl
57 $(call Package/wget/Default)
58 TITLE+= (without SSL support)
59 VARIANT:=nossl
60 ALTERNATIVES:=300:/usr/bin/wget:/usr/bin/wget-nossl
61 endef
62
63 define Package/wget-nossl/description
64 $(call Package/wget/Default/description)
65 This package is built without SSL support.
66 endef
67
68 CONFIGURE_ARGS+= \
69 --disable-rpath \
70 --disable-iri \
71 --disable-pcre2 \
72 --with-included-libunistring \
73 --without-libuuid \
74 --without-libpsl
75
76 CONFIGURE_VARS += \
77 ac_cv_header_uuid_uuid_h=no
78
79 ifeq ($(BUILD_VARIANT),ssl)
80 CONFIGURE_ARGS+= \
81 --with-ssl=openssl \
82 --with-libssl-prefix="$(STAGING_DIR)/usr"
83
84 CONFIGURE_VARS += \
85 ac_cv_libssl=yes
86 endif
87
88 ifeq ($(BUILD_VARIANT),nossl)
89 CONFIGURE_ARGS+= \
90 --disable-ntlm \
91 --without-ssl
92 endif
93
94 define Package/wget/install
95 $(INSTALL_DIR) $(1)/usr/bin
96 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/wget $(1)/usr/bin/wget-ssl
97 ln -sf wget-ssl $(1)/usr/bin/wget
98 endef
99
100 define Package/wget-nossl/install
101 $(INSTALL_DIR) $(1)/usr/bin
102 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/wget $(1)/usr/bin/wget-nossl
103 ln -sf wget-nossl $(1)/usr/bin/wget
104 endef
105
106 $(eval $(call BuildPackage,wget))
107 $(eval $(call BuildPackage,wget-nossl))