0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-08-24 23:12:41 +00:00
Files
termux-packages/x11-packages/libadwaita/build.sh
Biswapriyo Nath 5e1f965bda bump(x11/libadwaita): 1.7.2
Disable doc-format option with g-ir-scanner program. That option is
available in gobject-introspection >= 1.83.2 but host ubuntu has 1.80.1.
2025-04-14 08:58:59 +05:30

31 lines
1.0 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://gnome.pages.gitlab.gnome.org/libadwaita/
TERMUX_PKG_DESCRIPTION="Building blocks for modern adaptive GNOME applications"
TERMUX_PKG_LICENSE="LGPL-2.1"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="1.7.2"
TERMUX_PKG_SRCURL=https://gitlab.gnome.org/GNOME/libadwaita/-/archive/${TERMUX_PKG_VERSION}/libadwaita-${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=2bb5c2182ccf6dd29518043df66038020abfa738683de30fc1b8a16203d03723
TERMUX_PKG_DEPENDS="appstream, fribidi, glib, graphene, gtk4, pango"
TERMUX_PKG_BUILD_DEPENDS="g-ir-scanner, valac"
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_VERSIONED_GIR=false
TERMUX_PKG_DISABLE_GIR=false
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
-Dintrospection=enabled
-Dvapi=true
-Dtests=false
-Dexamples=true
"
termux_step_pre_configure() {
termux_setup_gir
termux_setup_glib_cross_pkg_config_wrapper
}
termux_step_post_massage() {
local _GUARD_FILE="lib/libadwaita-1.so"
if [ ! -e "${_GUARD_FILE}" ]; then
termux_error_exit "Error: file ${_GUARD_FILE} not found."
fi
}