3de8caaa47
Should have been done earlier itself might have broken less installations due to partial upgrades during openssl update from 1.1.1 yo 3.0.x
38 lines
1.2 KiB
Bash
38 lines
1.2 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://curl.se/
|
|
TERMUX_PKG_DESCRIPTION="Easy-to-use client-side URL transfer library"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="7.83.0"
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://github.com/curl/curl/releases/download/curl-${TERMUX_PKG_VERSION//./_}/curl-${TERMUX_PKG_VERSION}.tar.xz
|
|
TERMUX_PKG_SHA256=bbff0e6b5047e773f3c3b084d80546cc1be4e354c09e419c2d0ef6116253511a
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_UPDATE_VERSION_REGEXP="\d+.\d+.\d+"
|
|
TERMUX_PKG_DEPENDS="libnghttp2, libssh2, openssl (>= 3.0.3), zlib"
|
|
TERMUX_PKG_BREAKS="libcurl-dev"
|
|
TERMUX_PKG_REPLACES="libcurl-dev"
|
|
TERMUX_PKG_ESSENTIAL=true
|
|
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
--enable-ntlm-wb=$TERMUX_PREFIX/bin/ntlm_auth
|
|
--with-ca-bundle=$TERMUX_PREFIX/etc/tls/cert.pem
|
|
--with-ca-path=$TERMUX_PREFIX/etc/tls/certs
|
|
--with-nghttp2
|
|
--without-libidn
|
|
--without-libidn2
|
|
--without-librtmp
|
|
--without-brotli
|
|
--with-ssl
|
|
--with-libssh2
|
|
"
|
|
|
|
|
|
# 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)"
|
|
|
|
termux_step_pre_configure() {
|
|
LDFLAGS+=" -Wl,-z,nodelete"
|
|
}
|