termux-packages/packages/libcurl/build.sh

30 lines
1.0 KiB
Bash
Raw Normal View History

2017-04-19 20:58:46 +00:00
TERMUX_PKG_HOMEPAGE=https://curl.haxx.se/
2015-06-12 23:03:31 +00:00
TERMUX_PKG_DESCRIPTION="Easy-to-use client-side URL transfer library"
2019-01-21 12:53:58 +00:00
TERMUX_PKG_LICENSE="MIT"
2020-12-11 15:52:56 +00:00
TERMUX_PKG_VERSION=7.74.0
2018-08-25 21:30:19 +00:00
TERMUX_PKG_SRCURL=https://curl.haxx.se/download/curl-${TERMUX_PKG_VERSION}.tar.bz2
2020-12-11 15:52:56 +00:00
TERMUX_PKG_SHA256=0f4d63e6681636539dc88fa8e929f934cd3a840c46e0bf28c73be11e521b77a5
TERMUX_PKG_DEPENDS="libnghttp2, libssh2, openssl (>= 1.1.1), zlib"
TERMUX_PKG_BREAKS="libcurl-dev"
TERMUX_PKG_REPLACES="libcurl-dev"
TERMUX_PKG_ESSENTIAL=true
2017-02-24 20:12:36 +00:00
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
--enable-ntlm-wb=$TERMUX_PREFIX/bin/ntlm_auth
2017-02-24 20:12:36 +00:00
--with-ca-bundle=$TERMUX_PREFIX/etc/tls/cert.pem
2019-09-29 19:35:20 +00:00
--with-ca-path=$TERMUX_PREFIX/etc/tls/certs
2017-02-24 20:12:36 +00:00
--with-nghttp2
--without-libidn
2018-05-25 22:52:41 +00:00
--without-libidn2
2017-02-24 20:12:36 +00:00
--without-librtmp
2018-06-20 01:06:37 +00:00
--without-brotli
2017-02-24 20:12:36 +00:00
--with-ssl
--with-libssh2
2017-02-24 20:12:36 +00:00
"
# Starting with version 7.62 curl started enabling http/2 by default.
# Support for http/2 as added in version 1.4.8-8 of the apt package, so we
# conflict with previous versions to avoid broken installations.
TERMUX_PKG_CONFLICTS="apt (<< 1.4.8-8)"