Makefile 5.8 KB

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