wok view yad/receipt @ rev 5739

libexo-dev: fix WANTED
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 26 15:05:19 2010 +0200 (2010-06-26)
parents be6da72d3cdb
children f510ed9a2782
line source
1 # SliTaz package receipt.
3 PACKAGE="yad"
4 VERSION="0.2.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.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 }