mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-03 01:20:21 +00:00
Removing maintainers if there was no activity after pull request merging or if there was no activity in the last two years [no ci]
33 lines
1.4 KiB
Bash
33 lines
1.4 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.15.2a"
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SRCURL=https://github.com/libvips/libvips/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=e59d50fd7d4594b86b86e6cc03e7c8ec7fbeaae910cf0e525f45e7adfe52cba6
|
|
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
|
|
|
|
local _WRAPPER_BIN="${TERMUX_PKG_BUILDDIR}/_wrapper/bin"
|
|
mkdir -p "${_WRAPPER_BIN}"
|
|
if [[ "${TERMUX_ON_DEVICE_BUILD}" == "false" ]]; then
|
|
sed "s|^export PKG_CONFIG_LIBDIR=|export PKG_CONFIG_LIBDIR=${TERMUX_PREFIX}/opt/glib/cross/lib/x86_64-linux-gnu/pkgconfig:|" \
|
|
"${TERMUX_STANDALONE_TOOLCHAIN}/bin/pkg-config" \
|
|
> "${_WRAPPER_BIN}/pkg-config"
|
|
chmod +x "${_WRAPPER_BIN}/pkg-config"
|
|
export PKG_CONFIG="${_WRAPPER_BIN}/pkg-config"
|
|
fi
|
|
export PATH="${_WRAPPER_BIN}:${PATH}"
|
|
}
|