mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-04 18:45:52 +00:00
9ce4ac7b7d
This commit has been automatically submitted by Github Actions.
31 lines
1010 B
Bash
31 lines
1010 B
Bash
TERMUX_PKG_HOMEPAGE=https://nghttp2.org/nghttp3/
|
|
TERMUX_PKG_DESCRIPTION="HTTP/3 library written in C"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="1.6.0"
|
|
TERMUX_PKG_SRCURL=https://github.com/ngtcp2/nghttp3/releases/download/v${TERMUX_PKG_VERSION}/nghttp3-${TERMUX_PKG_VERSION}.tar.xz
|
|
TERMUX_PKG_SHA256=eaa901954bc494034d3738ef19130de69387d6a3da029044c60d9dae91792a8d
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_ESSENTIAL=true
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--enable-lib-only"
|
|
|
|
termux_step_post_get_source() {
|
|
# Do not forget to bump revision of reverse dependencies and rebuild them
|
|
# after SOVERSION is changed.
|
|
local _SOVERSION=9
|
|
|
|
local a
|
|
for a in LT_CURRENT LT_AGE; do
|
|
local _${a}=$(sed -En 's/^AC_SUBST\('"${a}"',\s*([0-9]+).*/\1/p' \
|
|
configure.ac)
|
|
done
|
|
local v=$(( _LT_CURRENT - _LT_AGE ))
|
|
if [ ! "${_LT_CURRENT}" ] || [ "${v}" != "${_SOVERSION}" ]; then
|
|
termux_error_exit "SOVERSION guard check failed."
|
|
fi
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
autoreconf -fi
|
|
}
|