23 lines
492 B
Plaintext
23 lines
492 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
|
|
|
|
name=zenity
|
|
version=3.32.0
|
|
release=1
|
|
source=(https://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
export CFLAGS+=' -Wno-error=implicit-function-declaration'
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|