Makefile 5.9 KB

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