wok view yad-gtk3/receipt @ rev 14237

Up yad 0.20.1; up libgee 0.9.92; add yad-gtk3, libnotify-gtk3*. Add steadyflow gtk+3 downloader (compiles, runs, but can't able to download or/and save files).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 22 14:44:40 2013 +0000 (2013-03-22)
parents
children 695e22e54749
line source
1 # SliTaz package receipt.
3 PACKAGE="yad-gtk3"
4 VERSION="0.20.1"
5 CATEGORY="utilities"
6 SHORT_DESC="Display graphical dialogs from shell scripts or command line (GTK+3)"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="yad-$VERSION.tar.xz"
9 WEB_SITE="http://code.google.com/p/yad/"
10 WGET_URL="http://yad.googlecode.com/files/$TARBALL"
11 TAGS="gtk3"
13 DEPENDS="gtk+3"
14 BUILD_DEPENDS="gtk+3-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 patch -p1 < $stuff/ru.patch
20 ./configure \
21 --with-gtk=gtk3 \
22 --enable-icon-browser &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p \
31 $fs/usr/share/pixmaps
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/share/icons/hicolor/48x48/apps/yad.png \
34 $fs/usr/share/pixmaps
35 }