wok view yad-gtk3/receipt @ rev 15080

libmatchbox: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 13 17:56:32 2013 +0000 (2013-08-13)
parents 695e22e54749
children 2a35430dc9ab
line source
1 # SliTaz package receipt.
3 PACKAGE="yad-gtk3"
4 VERSION="0.20.3"
5 CATEGORY="utilities"
6 SHORT_DESC="Display graphical dialogs from shell scripts or command line (GTK+3)"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL3"
9 TARBALL="yad-$VERSION.tar.xz"
10 WEB_SITE="http://code.google.com/p/yad/"
11 WGET_URL="http://yad.googlecode.com/files/$TARBALL"
12 TAGS="gtk3"
13 VERSION_NOTE="latest"
15 DEPENDS="gtk+3"
16 BUILD_DEPENDS="gtk+3-dev optipng"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 patch -p1 < $stuff/ru.patch
22 ./configure \
23 --with-gtk=gtk3 \
24 --enable-icon-browser &&
25 make &&
26 make install
27 optipng -quiet -zc1-9 -zm1-9 -zs0-3 -f0-5 \
28 $install/usr/share/icons/hicolor/48x48/apps/yad.png
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p \
35 $fs/usr/share/pixmaps
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/share/icons/hicolor/48x48/apps/yad.png \
38 $fs/usr/share/pixmaps
39 }