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