From 7504841f921245a87939d8564f67779450ca002a Mon Sep 17 00:00:00 2001 From: chrysos349 Date: Mon, 1 Jul 2024 14:07:49 +0300 Subject: [PATCH] json-glib: update to 1.9.2 --- srcpkgs/json-glib/template | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/srcpkgs/json-glib/template b/srcpkgs/json-glib/template index afe909522109b2..5861899b9e3a35 100644 --- a/srcpkgs/json-glib/template +++ b/srcpkgs/json-glib/template @@ -1,11 +1,13 @@ # Template file for 'json-glib' pkgname=json-glib -version=1.8.0 +version=1.9.2 revision=1 build_style=meson build_helper="gir" -configure_args="$(vopt_feature gir introspection)" -hostmakedepends="pkg-config glib-devel gettext" +configure_args="$(vopt_feature gir introspection) + $(vopt_feature gtk_doc documentation)" +hostmakedepends="pkg-config glib-devel gettext python3-docutils + $(vopt_if gtk_doc gi-docgen)" makedepends="libglib-devel" short_desc="JSON parser for GLib-based libraries and applications" maintainer="skmpz " @@ -13,12 +15,16 @@ license="LGPL-2.1-or-later" homepage="https://live.gnome.org/JsonGlib" changelog="https://gitlab.gnome.org/GNOME/json-glib/-/raw/master/NEWS" distfiles="${GNOME_SITE}/json-glib/${version%.*}/json-glib-${version}.tar.xz" -checksum=97ef5eb92ca811039ad50a65f06633f1aae64792789307be7170795d8b319454 +checksum=8f9f04e0045bda82affd464ee575796600fe29014b817392a3b72ceb2d10c595 # Package build options -build_options="gir" +build_options="gir gtk_doc" build_options_default="gir" +if [ -z "$CROSS_BUILD" ]; then + build_options_default+=" gtk_doc" +fi + post_install() { rm -r ${DESTDIR}/usr/share/installed-tests rm -r ${DESTDIR}/usr/libexec/installed-tests @@ -34,5 +40,8 @@ json-glib-devel_package() { fi vmove usr/lib/pkgconfig vmove "usr/lib/*.so" + if [ "$build_option_gtk_doc" ]; then + vmove usr/share/doc + fi } }