contrib/zenity/Pkgfile

23 lines
492 B
Plaintext
Raw Normal View History

2020-05-30 13:11:53 +02:00
# 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
2020-06-18 12:27:15 +02:00
version=3.32.0
2020-05-30 13:11:53 +02:00
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
}