new package: libcurl-gnutls

This commit is contained in:
Chongyun Lee 2023-12-07 19:19:09 +08:00
parent 0ea0050a50
commit f46cbb0bb4
2 changed files with 64 additions and 0 deletions

View File

@ -0,0 +1,59 @@
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="8.5.0"
TERMUX_PKG_SRCURL=https://github.com/curl/curl/releases/download/curl-${TERMUX_PKG_VERSION//./_}/curl-${TERMUX_PKG_VERSION}.tar.xz
TERMUX_PKG_SHA256=42ab8db9e20d8290a3b633e7fbb3cec15db34df65fd1015ef8ac1e4723750eeb
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_UPDATE_VERSION_REGEXP="\d+.\d+.\d+"
TERMUX_PKG_DEPENDS="libgnutls, libnghttp2, libnghttp3, libngtcp2, libssh2, zlib"
TERMUX_PKG_BREAKS="libcurl-dev"
TERMUX_PKG_REPLACES="libcurl, libcurl-dev"
TERMUX_PKG_PROVIDES="libcurl"
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-libssh2
--with-ssl
--without-openssl
--with-gnutls
--with-nghttp3
--with-ngtcp2
"
# https://github.com/termux/termux-packages/issues/15889
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_func_getpwuid=yes"
# 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_post_get_source() {
# Do not forget to bump revision of reverse dependencies and rebuild them
# after SOVERSION is changed.
local _SOVERSION=4
local a
for a in VERSIONCHANGE VERSIONDEL; do
local _${a}=$(sed -En 's/^'"${a}"'=([0-9]+).*/\1/p' \
lib/Makefile.soname)
done
local v=$(( _VERSIONCHANGE - _VERSIONDEL ))
if [ ! "${_VERSIONCHANGE}" ] || [ "${v}" != "${_SOVERSION}" ]; then
termux_error_exit "SOVERSION guard check failed."
fi
}
termux_step_pre_configure() {
LDFLAGS+=" -Wl,-z,nodelete"
}

View File

@ -0,0 +1,5 @@
TERMUX_SUBPKG_INCLUDE="bin/curl share/man/man1/curl.1.gz"
TERMUX_SUBPKG_DESCRIPTION="Command line tool for transferring data with URL syntax"
TERMUX_SUBPKG_REPLACES="curl"
TERMUX_SUBPKG_PROVIDES="curl"
TERMUX_SUBPKG_ESSENTIAL=true