mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-11 23:00:52 +00:00
b3c8ce59c6
This commit has been automatically submitted by Github Actions.
36 lines
1.2 KiB
Bash
36 lines
1.2 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://libgit2.github.com/
|
|
TERMUX_PKG_DESCRIPTION="C library implementing Git core methods"
|
|
# License: GPL-2.0 with linking exception
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_LICENSE_FILE="COPYING"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="1.8.4"
|
|
TERMUX_PKG_SRCURL=https://github.com/libgit2/libgit2/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=49d0fc50ab931816f6bfc1ac68f8d74b760450eebdb5374e803ee36550f26774
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="libssh2, openssl, pcre2, zlib"
|
|
TERMUX_PKG_BUILD_DEPENDS="libiconv, libpcreposix"
|
|
TERMUX_PKG_BREAKS="libgit2-dev"
|
|
TERMUX_PKG_REPLACES="libgit2-dev"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
-DBUILD_TESTS=OFF
|
|
-DUSE_SSH=ON
|
|
-DREGEX_BACKEND=pcre2
|
|
"
|
|
|
|
termux_step_post_get_source() {
|
|
# Do not forget to bump revision of reverse dependencies and rebuild them
|
|
# after SOVERSION is changed.
|
|
local _SOVERSION=1.8
|
|
|
|
local v=$(echo ${TERMUX_PKG_VERSION#*:} | cut -d . -f 1-2)
|
|
if [ "${v}" != "${_SOVERSION}" ]; then
|
|
termux_error_exit "SOVERSION guard check failed."
|
|
fi
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
find "$TERMUX_PKG_SRCDIR" -name CMakeLists.txt | xargs -n 1 \
|
|
sed -i 's/\( PROPERTIES C_STANDARD\) 90/\1 99/g'
|
|
}
|