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