mirror of
https://github.com/termux/termux-packages.git
synced 2025-09-20 20:29:37 +00:00
51 lines
1.7 KiB
Bash
51 lines
1.7 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://www.freedesktop.org/wiki/Software/HarfBuzz/
|
|
TERMUX_PKG_DESCRIPTION="OpenType text shaping engine"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="11.2.0"
|
|
TERMUX_PKG_SRCURL=https://github.com/harfbuzz/harfbuzz/archive/refs/tags/${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=16c0204704f3ebeed057aba100fe7db18d71035505cb10e595ea33d346457fc8
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="freetype, glib, libcairo, libgraphite"
|
|
TERMUX_PKG_BUILD_DEPENDS="g-ir-scanner, glib-cross"
|
|
TERMUX_PKG_BREAKS="harfbuzz-dev"
|
|
TERMUX_PKG_REPLACES="harfbuzz-dev"
|
|
TERMUX_PKG_VERSIONED_GIR=false
|
|
TERMUX_PKG_DISABLE_GIR=false
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
-Dcpp_std=c++17
|
|
-Ddocs=disabled
|
|
-Dgobject=enabled
|
|
-Dgraphite=enabled
|
|
-Dintrospection=enabled
|
|
-Dtests=disabled
|
|
"
|
|
TERMUX_PKG_RM_AFTER_INSTALL="
|
|
share/gtk-doc
|
|
"
|
|
|
|
termux_step_post_get_source() {
|
|
mv CMakeLists.txt CMakeLists.txt.unused
|
|
|
|
# Do not forget to bump revision of reverse dependencies and rebuild them
|
|
# after SOVERSION is changed.
|
|
local _SOVERSION=0
|
|
|
|
local e=$(grep -oP "hb_so_version = '\K\d+" src/meson.build | uniq)
|
|
if [ ! "${e}" ] || [ "${_SOVERSION}" != "${e}" ]; then
|
|
termux_error_exit "SOVERSION guard check failed."
|
|
fi
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
termux_setup_gir
|
|
termux_setup_glib_cross_pkg_config_wrapper
|
|
}
|
|
|
|
termux_step_post_make_install() {
|
|
install -Dm600 "$TERMUX_PKG_BUILDER_DIR"/hb-info.1 "$TERMUX_PREFIX"/share/man/man1/hb-info.1
|
|
install -Dm600 "$TERMUX_PKG_BUILDER_DIR"/hb-shape.1 "$TERMUX_PREFIX"/share/man/man1/hb-shape.1
|
|
install -Dm600 "$TERMUX_PKG_BUILDER_DIR"/hb-subset.1 "$TERMUX_PREFIX"/share/man/man1/hb-subset.1
|
|
install -Dm600 "$TERMUX_PKG_BUILDER_DIR"/hb-view.1 "$TERMUX_PREFIX"/share/man/man1/hb-view.1
|
|
}
|