* update zenity to 4.0.0-1

This commit is contained in:
Alexander Baldeck 2024-01-09 15:04:36 +01:00
parent 2852074aa1
commit 1f1920ed13

View File

@ -3,23 +3,23 @@
# Contributor: Jan de Groot <jgc@archlinux.org> # Contributor: Jan de Groot <jgc@archlinux.org>
pkgname=zenity pkgname=zenity
pkgver=3.44.2 pkgver=4.0.0
pkgrel=1 pkgrel=1
pkgdesc="Display graphical dialog boxes from shell scripts" pkgdesc="Display graphical dialog boxes from shell scripts"
url="https://gitlab.gnome.org/GNOME/zenity" url="https://gitlab.gnome.org/GNOME/zenity"
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64) arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
license=(LGPL) license=(LGPL-2.1-or-later)
depends=( depends=(
gtk3 libadwaita
libnotify
) )
makedepends=( makedepends=(
git git
help2man
meson meson
util-linux
yelp-tools yelp-tools
) )
optdepends=('perl: gdialog wrapper') _commit=4e750f1aa1068d03156b80dfb0471b619156d638 # tags/4.0.0^0
_commit=e9a591aa1d182e220013d9ab50dcc7607734d7b1 # tags/3.44.2-real^0
source=("git+https://gitlab.gnome.org/GNOME/zenity.git#commit=$_commit") source=("git+https://gitlab.gnome.org/GNOME/zenity.git#commit=$_commit")
b2sums=('SKIP') b2sums=('SKIP')
@ -34,7 +34,6 @@ prepare() {
build() { build() {
local meson_options=( local meson_options=(
-D libnotify=true
) )
arch-meson zenity build "${meson_options[@]}" arch-meson zenity build "${meson_options[@]}"
@ -47,6 +46,7 @@ check() {
package() { package() {
meson install -C build --destdir "$pkgdir" meson install -C build --destdir "$pkgdir"
hardlink -c "$pkgdir/usr/share/help"
} }
# vim:set sw=2 sts=-1 et: # vim:set sw=2 sts=-1 et: