* update libhandy to 1.8.3-1

This commit is contained in:
Alexander Baldeck 2024-03-08 03:34:36 +01:00
parent 2feb214420
commit e98dbb2347

View File

@ -3,13 +3,16 @@
# Contributor: Balló György <ballogyor+arch at gmail dot com>
pkgbase=libhandy
pkgname=(libhandy libhandy-docs)
pkgver=1.8.2
pkgname=(
libhandy
libhandy-docs
)
pkgver=1.8.3
pkgrel=1
pkgdesc="Library full of GTK+ widgets for mobile phones"
url="https://gitlab.gnome.org/GNOME/libhandy"
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
license=(LGPL)
license=(LGPL-2.1-or-later)
depends=(
glib2
gtk3
@ -23,9 +26,9 @@ makedepends=(
vala
)
checkdepends=(xorg-server-xvfb)
_commit=48ae7ec0f7f9ee5f666da38b0e39e66874957166 # tags/1.8.2^0
_commit=9b0071408ce86a3ef843806fddd723a85f6f2416 # tags/1.8.3^0
source=("git+https://gitlab.gnome.org/GNOME/libhandy.git#commit=$_commit")
sha256sums=('SKIP')
b2sums=('SKIP')
pkgver() {
cd libhandy
@ -37,7 +40,11 @@ prepare() {
}
build() {
arch-meson libhandy build -D gtk_doc=true
local meson_options=(
-D gtk_doc=true
)
arch-meson libhandy build "${meson_options[@]}"
meson compile -C build
}