wok view yad/receipt @ rev 5453

Up: diffutils (3.0)
author Alexander Medvedev <devl547@gmail.com>
date Wed May 05 18:20:59 2010 +0000 (2010-05-05)
parents c64834e1639a
children 2c73cfc3479f
line source
1 # SliTaz package receipt.
3 PACKAGE="yad"
4 VERSION="0.2.0"
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.bz2"
9 WEB_SITE="http://code.google.com/p/yad/"
10 WGET_URL="http://yad.googlecode.com/files/$TARBALL"
11 BUILD_DEPENDS="acl intltool gettext pkg-config glib-dev gtk+-dev"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 }