1
0

Makefile 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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:=curl
  9. PKG_VERSION:=7.52.1
  10. PKG_RELEASE:=3
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  12. PKG_SOURCE_URL:=http://curl.haxx.se/download/ \
  13. http://www.mirrorspace.org/curl/ \
  14. http://www.mirrormonster.com/curl/download/ \
  15. http://curl.mirrors.cyberservers.net/download/
  16. PKG_HASH:=d16185a767cb2c1ba3d5b9096ec54e5ec198b213f45864a38b3bda4bbf87389b
  17. PKG_LICENSE:=MIT
  18. PKG_LICENSE_FILES:=COPYING
  19. PKG_FIXUP:=autoreconf
  20. PKG_BUILD_PARALLEL:=1
  21. PKG_CONFIG_DEPENDS:= \
  22. CONFIG_IPV6 \
  23. \
  24. CONFIG_LIBCURL_CYASSL \
  25. CONFIG_LIBCURL_GNUTLS \
  26. CONFIG_LIBCURL_OPENSSL \
  27. CONFIG_LIBCURL_MBEDTLS \
  28. CONFIG_LIBCURL_NOSSL \
  29. \
  30. CONFIG_LIBCURL_LIBIDN \
  31. CONFIG_LIBCURL_SSH2 \
  32. CONFIG_LIBCURL_ZLIB \
  33. \
  34. CONFIG_LIBCURL_DICT \
  35. CONFIG_LIBCURL_FILE \
  36. CONFIG_LIBCURL_FTP \
  37. CONFIG_LIBCURL_GOPHER \
  38. CONFIG_LIBCURL_HTTP \
  39. CONFIG_LIBCURL_IMAP \
  40. CONFIG_LIBCURL_LDAP \
  41. CONFIG_LIBCURL_LDAPS \
  42. CONFIG_LIBCURL_POP3 \
  43. CONFIG_LIBCURL_RTSP \
  44. CONFIG_LIBCURL_NO_RTSP \
  45. CONFIG_LIBCURL_SMB \
  46. CONFIG_LIBCURL_NO_SMB \
  47. CONFIG_LIBCURL_SMTP \
  48. CONFIG_LIBCURL_TELNET \
  49. CONFIG_LIBCURL_TFTP \
  50. \
  51. CONFIG_LIBCURL_COOKIES \
  52. CONFIG_LIBCURL_CRYPTO_AUTH \
  53. CONFIG_LIBCURL_LIBCURL_OPTION \
  54. CONFIG_LIBCURL_PROXY \
  55. CONFIG_LIBCURL_THREADED_RESOLVER \
  56. CONFIG_LIBCURL_TLS_SRP \
  57. CONFIG_LIBCURL_UNIX_SOCKETS \
  58. CONFIG_LIBCURL_VERBOSE \
  59. CONFIG_LIBCURL_NTLM
  60. include $(INCLUDE_DIR)/package.mk
  61. define Package/curl/Default
  62. SECTION:=net
  63. CATEGORY:=Network
  64. URL:=http://curl.haxx.se/
  65. MAINTAINER:=Imre Kaloz <kaloz@openwrt.org>
  66. endef
  67. define Package/curl
  68. $(call Package/curl/Default)
  69. SUBMENU:=File Transfer
  70. DEPENDS:=+libcurl
  71. TITLE:=A client-side URL transfer utility
  72. endef
  73. define Package/libcurl
  74. $(call Package/curl/Default)
  75. SECTION:=libs
  76. CATEGORY:=Libraries
  77. DEPENDS:= +LIBCURL_CYASSL:libcyassl +LIBCURL_OPENSSL:libopenssl +LIBCURL_GNUTLS:libgnutls +LIBCURL_MBEDTLS:libmbedtls
  78. DEPENDS += +LIBCURL_ZLIB:zlib +LIBCURL_THREADED_RESOLVER:libpthread +LIBCURL_LDAP:libopenldap +LIBCURL_LIBIDN:libidn +LIBCURL_SSH2:libssh2
  79. TITLE:=A client-side URL transfer library
  80. MENU:=1
  81. endef
  82. define Package/libcurl/config
  83. source "$(SOURCE)/Config.in"
  84. endef
  85. TARGET_CFLAGS += $(FPIC) -ffunction-sections -fdata-sections
  86. TARGET_CPPFLAGS += $(if $(CONFIG_LIBCURL_NTLM),,-DCURL_DISABLE_NTLM)
  87. TARGET_LDFLAGS += -Wl,--gc-sections
  88. CONFIGURE_ARGS += \
  89. --disable-debug \
  90. --disable-ares \
  91. --enable-shared \
  92. --enable-static \
  93. --disable-manual \
  94. --without-nss \
  95. --without-libmetalink \
  96. --without-librtmp \
  97. \
  98. $(call autoconf_bool,CONFIG_IPV6,ipv6) \
  99. \
  100. $(if $(CONFIG_LIBCURL_CYASSL),--with-cyassl="$(STAGING_DIR)/usr" --without-ca-path --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt,--without-cyassl) \
  101. $(if $(CONFIG_LIBCURL_GNUTLS),--with-gnutls="$(STAGING_DIR)/usr" --without-ca-bundle --with-ca-path=/etc/ssl/certs,--without-gnutls) \
  102. $(if $(CONFIG_LIBCURL_OPENSSL),--with-ssl="$(STAGING_DIR)/usr" --without-ca-bundle --with-ca-path=/etc/ssl/certs,--without-ssl) \
  103. $(if $(CONFIG_LIBCURL_MBEDTLS),--with-mbedtls="$(STAGING_DIR)/usr" --without-ca-path --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt,--without-mbedtls) \
  104. \
  105. $(if $(CONFIG_LIBCURL_LIBIDN),--with-libidn="$(STAGING_DIR)/usr",--without-libidn) \
  106. $(if $(CONFIG_LIBCURL_SSH2),--with-libssh2="$(STAGING_DIR)/usr",--without-libssh2) \
  107. $(if $(CONFIG_LIBCURL_ZLIB),--with-zlib="$(STAGING_DIR)/usr",--without-zlib) \
  108. \
  109. $(call autoconf_bool,CONFIG_LIBCURL_DICT,dict) \
  110. $(call autoconf_bool,CONFIG_LIBCURL_FILE,file) \
  111. $(call autoconf_bool,CONFIG_LIBCURL_FTP,ftp) \
  112. $(call autoconf_bool,CONFIG_LIBCURL_GOPHER,gopher) \
  113. $(call autoconf_bool,CONFIG_LIBCURL_HTTP,http) \
  114. $(call autoconf_bool,CONFIG_LIBCURL_IMAP,imap) \
  115. $(call autoconf_bool,CONFIG_LIBCURL_LDAP,ldap) \
  116. $(call autoconf_bool,CONFIG_LIBCURL_LDAPS,ldaps) \
  117. $(call autoconf_bool,CONFIG_LIBCURL_POP3,pop3) \
  118. $(call autoconf_bool,CONFIG_LIBCURL_RTSP,rtsp) \
  119. $(call autoconf_bool,CONFIG_LIBCURL_SMB,smb) \
  120. $(call autoconf_bool,CONFIG_LIBCURL_SMTP,smtp) \
  121. $(call autoconf_bool,CONFIG_LIBCURL_TELNET,telnet) \
  122. $(call autoconf_bool,CONFIG_LIBCURL_TFTP,tftp) \
  123. \
  124. $(call autoconf_bool,CONFIG_LIBCURL_COOKIES,cookies) \
  125. $(call autoconf_bool,CONFIG_LIBCURL_CRYPTO_AUTH,crypto-auth) \
  126. $(call autoconf_bool,CONFIG_LIBCURL_LIBCURL_OPTION,libcurl-option) \
  127. $(call autoconf_bool,CONFIG_LIBCURL_PROXY,proxy) \
  128. $(call autoconf_bool,CONFIG_LIBCURL_THREADED_RESOLVER,threaded-resolver) \
  129. $(call autoconf_bool,CONFIG_LIBCURL_TLS_SRP,tls-srp) \
  130. $(call autoconf_bool,CONFIG_LIBCURL_UNIX_SOCKETS,unix-sockets) \
  131. $(call autoconf_bool,CONFIG_LIBCURL_VERBOSE,verbose) \
  132. define Build/Compile
  133. +$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR) \
  134. DESTDIR="$(PKG_INSTALL_DIR)" \
  135. CC="$(TARGET_CC)" \
  136. install
  137. endef
  138. define Build/InstallDev
  139. $(INSTALL_DIR) $(2)/bin $(1)/usr/bin $(1)/usr/include $(1)/usr/lib $(1)/usr/lib/pkgconfig
  140. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/curl-config $(1)/usr/bin/
  141. $(CP) $(PKG_INSTALL_DIR)/usr/include/curl $(1)/usr/include/
  142. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcurl.{a,so*} $(1)/usr/lib/
  143. $(CP) $(PKG_BUILD_DIR)/libcurl.pc $(1)/usr/lib/pkgconfig/
  144. $(SED) 's,-L$$$${exec_prefix}/lib,,g' $(1)/usr/bin/curl-config
  145. [ -n "$(TARGET_LDFLAGS)" ] && $(SED) 's#$(TARGET_LDFLAGS)##g' $(1)/usr/lib/pkgconfig/libcurl.pc || true
  146. $(LN) $(STAGING_DIR)/usr/bin/curl-config $(2)/bin/
  147. endef
  148. define Package/curl/install
  149. $(INSTALL_DIR) $(1)/usr/bin
  150. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/curl $(1)/usr/bin/
  151. endef
  152. define Package/libcurl/install
  153. $(INSTALL_DIR) $(1)/usr/lib
  154. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcurl.so.* $(1)/usr/lib/
  155. endef
  156. $(eval $(call BuildPackage,curl))
  157. $(eval $(call BuildPackage,libcurl))