blob: 7bf29090149850ab380d7b2bdaf069a778ab17dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
NAME="zenity"
DESC="Display dialog boxes from the command line and shell scripts"
MAKEDEPS="gtk2 gtk3 intltool libxml2 libnotify itstool"
PKG_VER=3.32.0
SOURCE="https://download.gnome.org/sources/zenity/${PKG_VER%.*}/zenity-$PKG_VER.tar.xz"
build() {
./configure \
--prefix=/usr \
--sysconfdir=/etc
make
}
package() {
make DESTDIR="$PKG_DEST" install
}
|