wok-next view zenity-gtk2/receipt @ rev 20513

A lot of tiny edits; remove wget and pkg-build from $BUILD_DEPENDS and from *-dev packages $DEPENDS.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 21 15:58:17 2018 +0200 (2018-03-21)
parents
children 757d032c55c7
line source
1 # SliTaz package receipt v2.
3 PACKAGE="zenity-gtk2"
4 VERSION="2.32.1" # GTK+2 was deprecated in newer versions of zenity
5 CATEGORY="development"
6 SHORT_DESC="gui dialogs"
7 MAINTAINER="allan316@gmail.com"
8 LICENSE="LGPL2"
9 WEB_SITE="https://wiki.gnome.org/Projects/Zenity"
11 TARBALL="zenity-$VERSION.tar.bz2"
12 WGET_URL="$GNOME_MIRROR/zenity/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="gnome-doc-utils-dev intltool gtk+-dev" # + libnotify-dev -> crash on build. FIXME
16 compile_rules() {
17 ./configure \
18 --disable-scrollkeeper \
19 $CONFIGURE_ARGS &&
20 make && make install
21 }
23 genpkg_rules() {
24 copy @std
25 rm -r $fs/usr/share/gnome/ $fs/usr/share/omf/ # GNOME stuff. Just remove it
26 DEPENDS="atk cairo fontconfig freetype gdk-pixbuf glib gtk+ pango \
27 xorg-libX11"
28 TAGS="dialogs gui"
29 }