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.

101 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.19.5
  10. PKG_RELEASE:=2
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
  13. PKG_HASH:=b39212abe1a73f2b28f4c6cb223c738559caac91d6e416a6d91d4b9d55c9faee
  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:=http://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. --with-included-libunistring \
  58. --without-libuuid \
  59. --without-libpsl
  60. CONFIGURE_VARS += \
  61. ac_cv_header_uuid_uuid_h=no
  62. ifeq ($(BUILD_VARIANT),ssl)
  63. CONFIGURE_ARGS+= \
  64. --with-ssl=openssl \
  65. --with-libssl-prefix="$(STAGING_DIR)/usr"
  66. endif
  67. ifeq ($(BUILD_VARIANT),nossl)
  68. CONFIGURE_ARGS+= \
  69. --disable-ntlm \
  70. --without-ssl
  71. endif
  72. define Package/wget/install
  73. $(INSTALL_DIR) $(1)/usr/bin
  74. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/wget $(1)/usr/bin/wget-ssl
  75. ln -sf wget-ssl $(1)/usr/bin/wget
  76. endef
  77. define Package/wget-nossl/install
  78. $(INSTALL_DIR) $(1)/usr/bin
  79. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/wget $(1)/usr/bin/wget-nossl
  80. ln -sf wget-nossl $(1)/usr/bin/wget
  81. endef
  82. $(eval $(call BuildPackage,wget))
  83. $(eval $(call BuildPackage,wget-nossl))