25 lines
596 B
Plaintext
25 lines
596 B
Plaintext
# Description: Display graphical dialog boxes from shell scripts.
|
|
# URL: https://gitlab.gnome.org/GNOME/zenity
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: gtk3 itstool
|
|
# Optional: libnotify webkitgtk
|
|
|
|
name=zenity
|
|
version=3.44.1
|
|
release=1
|
|
source=(https://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
meson setup $name-$version build \
|
|
--prefix=/usr \
|
|
--buildtype=plain \
|
|
--wrap-mode nodownload \
|
|
-D b_lto=true \
|
|
-D b_pie=true
|
|
|
|
meson compile -C build
|
|
DESTDIR=$PKG meson install -C build
|
|
|
|
rm -r $PKG/usr/share/{locale,help}
|
|
}
|