You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
2.5 KiB

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