wok view yad/receipt @ rev 14252

readline: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 25 15:43:45 2013 +0100 (2013-03-25)
parents e198cb1a4206
children 695e22e54749
line source
1 # SliTaz package receipt.
3 PACKAGE="yad"
4 VERSION="0.20.1"
5 CATEGORY="utilities"
6 SHORT_DESC="Display graphical dialogs from shell scripts or command line"
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-$VERSION.tar.xz"
9 WEB_SITE="http://code.google.com/p/yad/"
10 WGET_URL="http://yad.googlecode.com/files/$TARBALL"
11 TAGS="gtk2"
13 DEPENDS="gtk+"
14 BUILD_DEPENDS="gtk+-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 patch -p1 < $stuff/ru.patch
20 ./configure \
21 --enable-icon-browser &&
22 make &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p \
30 $fs/usr/share/pixmaps
31 cp -a $install/usr/bin $fs/usr
32 cp -a $install/usr/share/icons/hicolor/48x48/apps/yad.png \
33 $fs/usr/share/pixmaps
34 }