Files
termux-packages/packages/libvips/build.sh
termux-pacman-bot 96c5faa2a1 bump(main/libvips): 8.17.1
This commit has been automatically submitted by Github Actions.
2025-07-07 18:46:59 +00:00

35 lines
1.3 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://libvips.github.io/libvips/
TERMUX_PKG_DESCRIPTION="A fast image processing library with low memory needs"
TERMUX_PKG_LICENSE="LGPL-2.1"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="8.17.1"
TERMUX_PKG_SRCURL=https://github.com/libvips/libvips/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=79f54d367a485507c1421408ae13768e4734f473edc71af511472645f46dbd08
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_DEPENDS="cgif, fftw, fontconfig, glib, imagemagick, libc++, libcairo, libexif, libexpat, libheif, libimagequant, libjpeg-turbo, libjxl, libpng, librsvg, libtiff, libwebp, littlecms, openexr, openjpeg, pango, poppler, zlib"
TERMUX_PKG_BUILD_DEPENDS="g-ir-scanner, glib-cross, valac"
TERMUX_PKG_DISABLE_GIR=true
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
-Dintrospection=enabled
-Dvapi=true
-Dorc=disabled
"
termux_step_pre_configure() {
termux_setup_gir
termux_setup_glib_cross_pkg_config_wrapper
export TERMUX_MESON_ENABLE_SOVERSION=1
}
termux_step_post_massage() {
# Do not forget to bump revision of reverse dependencies and rebuild them
# after SOVERSION is changed.
local _SOVERSION=42
if [ ! -e "lib/libvips.so.${_SOVERSION}" ]; then
echo "ERROR: Expected: lib/libvips.so.${_SOVERSION}" 1>&2
echo "ERROR: Found : $(find lib/libvips* -regex '.*so\.[0-9]+')" 1>&2
termux_error_exit "Not proceeding with update."
fi
}