mirror of
https://github.com/termux/termux-packages.git
synced 2025-01-31 21:22:27 +00:00
4dc1aa4171
This commit has been automatically submitted by Github Actions.
29 lines
1.1 KiB
Bash
29 lines
1.1 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/fribidi/fribidi/
|
|
TERMUX_PKG_DESCRIPTION="Implementation of the Unicode Bidirectional Algorithm"
|
|
TERMUX_PKG_LICENSE="LGPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="1.0.16"
|
|
TERMUX_PKG_SRCURL=https://github.com/fribidi/fribidi/releases/download/v$TERMUX_PKG_VERSION/fribidi-$TERMUX_PKG_VERSION.tar.xz
|
|
TERMUX_PKG_SHA256=1b1cde5b235d40479e91be2f0e88a309e3214c8ab470ec8a2744d82a5a9ea05c
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="glib"
|
|
TERMUX_PKG_BREAKS="fribidi-dev"
|
|
TERMUX_PKG_REPLACES="fribidi-dev"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-docs"
|
|
|
|
termux_step_post_get_source() {
|
|
# Do not forget to bump revision of reverse dependencies and rebuild them
|
|
# after SOVERSION is changed.
|
|
local _SOVERSION=0
|
|
|
|
local a
|
|
for a in INTERFACE_VERSION BINARY_AGE; do
|
|
local _${a}=$(sed -En 's/^m4_define\(fribidi_'"${a,,}"',\s*([0-9]+).*/\1/p' \
|
|
configure.ac)
|
|
done
|
|
local v=$(( _INTERFACE_VERSION - _BINARY_AGE ))
|
|
if [ ! "${_INTERFACE_VERSION}" ] || [ "${v}" != "${_SOVERSION}" ]; then
|
|
termux_error_exit "SOVERSION guard check failed."
|
|
fi
|
|
}
|