termux-packages/packages/libcurl/build.sh

32 lines
1.1 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"
TERMUX_PKG_MAINTAINER="@termux"
2021-02-03 19:08:48 +00:00
TERMUX_PKG_VERSION=7.75.0
TERMUX_PKG_REVISION=1
2018-08-25 21:30:19 +00:00
TERMUX_PKG_SRCURL=https://curl.haxx.se/download/curl-${TERMUX_PKG_VERSION}.tar.bz2
2021-02-03 19:08:48 +00:00
TERMUX_PKG_SHA256=50552d4501c178e4cc68baaecc487f466a3d6d19bbf4e50a01869effb316d026
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)"