wok view yad/receipt @ rev 15991

Up: prosody (0.9.3)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 02 14:10:27 2014 +0100 (2014-03-02)
parents 2a35430dc9ab
children 70a0e8ec8955
line source
1 # SliTaz package receipt.
3 PACKAGE="yad"
4 VERSION="0.26.0"
5 CATEGORY="utilities"
6 SHORT_DESC="Display graphical dialogs from shell scripts or command line"
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="http://sourceforge.net/projects/yad-dialog/"
11 WGET_URL="$SF_MIRROR/project/yad-dialog/$TARBALL"
12 TAGS="gtk2"
13 VERSION_NOTE="latest"
15 DEPENDS="gtk+"
16 BUILD_DEPENDS="gtk+-dev optipng"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 patch -p1 < $stuff/ru.patch
22 ./configure \
23 --enable-icon-browser &&
24 make &&
25 make install
26 optipng -quiet -zc1-9 -zm1-9 -zs0-3 -f0-5 \
27 $install/usr/share/icons/hicolor/48x48/apps/yad.png
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 usih=/usr/share/icons/hicolor
34 mkdir -p $fs$usih
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install$usih/48x48 $fs$usih
37 }