Makefile 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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.18
  10. PKG_RELEASE:=2
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
  13. PKG_MD5SUM:=af9ca95a4bb8ac4a9bf10aeae66fa5ec
  14. PKG_MAINTAINER:=Maxim Storchak <m.storchak@gmail.com>
  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. --without-libuuid
  58. CONFIGURE_VARS += \
  59. ac_cv_header_uuid_uuid_h=no
  60. ifeq ($(BUILD_VARIANT),ssl)
  61. CONFIGURE_ARGS+= \
  62. --with-ssl=openssl \
  63. --with-libssl-prefix="$(STAGING_DIR)/usr"
  64. endif
  65. ifeq ($(BUILD_VARIANT),nossl)
  66. CONFIGURE_ARGS+= \
  67. --disable-ntlm \
  68. --without-ssl
  69. endif
  70. define Package/wget/install
  71. $(INSTALL_DIR) $(1)/usr/bin
  72. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/wget $(1)/usr/bin/wget-ssl
  73. ln -sf wget-ssl $(1)/usr/bin/wget
  74. endef
  75. define Package/wget-nossl/install
  76. $(INSTALL_DIR) $(1)/usr/bin
  77. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/wget $(1)/usr/bin/wget-nossl
  78. ln -sf wget-nossl $(1)/usr/bin/wget
  79. endef
  80. $(eval $(call BuildPackage,wget))
  81. $(eval $(call BuildPackage,wget-nossl))