From 73886830e0f4fcc977fe0d93bbd54137b0bd43f9 Mon Sep 17 00:00:00 2001 From: Yingjie Wang Date: Sun, 18 Jan 2026 01:49:37 -0500 Subject: [PATCH] new blfs: gui-libs/libhandy-1.8.3 --- gui-libs/libhandy-1.8.3.PKGBUILD | 39 ++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 gui-libs/libhandy-1.8.3.PKGBUILD diff --git a/gui-libs/libhandy-1.8.3.PKGBUILD b/gui-libs/libhandy-1.8.3.PKGBUILD new file mode 100644 index 0000000..fa4e72d --- /dev/null +++ b/gui-libs/libhandy-1.8.3.PKGBUILD @@ -0,0 +1,39 @@ +pkgname=libhandy +pkgver=1.8.3 +pkgdesc="Building blocks for modern adaptive GNOME apps" +homepage="https://gitlab.gnome.org/GNOME/libhandy/" +license=("LGPL-2.1+") +slot="1" +depends=(glib:2 gtk+:3 gobject-introspection xorg-proto) +bdepends=(libxml:2 gettext) +sources=("${pkgname}-${pkgver}.tar.xz") +urls=("https://download.gnome.org/sources/${pkgname}/${pkgver%.*}/${sources[0]}") +sha512sums=("1e0ae363d2a4993c9667243715256b27cb0ecb898fa8f4ea1a914fbeb36c0a9c26447f8f13f92f5a855e45ada49f732adeb30b88d81f3ee5f984bca48db3ae65") + +src_prepare() { + tar -xf ${distdir}/${sources[0]} --strip-components=1 +} + +src_build() { + local meson_args=( + --prefix=/usr + --buildtype=release + --wrap-mode=nodownload + -D python.bytecompile=1 + -D profiling=false + -D introspection=enabled + -D vapi=true + -D gtk_doc=false + -D tests=false + -D examples=false + -D glade_catalog=disabled + ) + meson setup build "${meson_args[@]}" + meson compile -C build +} + +src_install() { + meson install -C build --destdir "$pkgdir" +} + +# vim:ft=sh syn=sh et sw=2: