wok annotate yad/receipt @ rev 9730

aufs: add TARBALL need to avoid cloning each time. It's tar.bz2 since cook will compress it in this format but if *.tar.lzma exit it will be used by both cook and tazwok
author Christophe Lincoln <pankso@slitaz.org>
date Mon May 09 15:38:20 2011 +0200 (2011-05-09)
parents c965be0dacea
children 51d0db4b9cc0
rev   line source
devl547@5115 1 # SliTaz package receipt.
devl547@5115 2
devl547@5115 3 PACKAGE="yad"
slaxemulator@9458 4 VERSION="0.10.0"
devl547@5115 5 CATEGORY="utilities"
devl547@5115 6 SHORT_DESC="Display graphical dialogs from shell scripts or command line"
devl547@5115 7 MAINTAINER="devl547@gmail.com"
devl547@6026 8 TARBALL="$PACKAGE-$VERSION.tar.xz"
devl547@5115 9 WEB_SITE="http://code.google.com/p/yad/"
devl547@5115 10 WGET_URL="http://yad.googlecode.com/files/$TARBALL"
devl547@5115 11 BUILD_DEPENDS="acl intltool gettext pkg-config glib-dev gtk+-dev"
devl547@5115 12
devl547@5115 13 # Rules to configure and make the package.
devl547@5115 14 compile_rules()
devl547@5115 15 {
devl547@5115 16 cd $src
slaxemulator@9458 17 [ -f install-sh ] && chmod +x install-sh
pankso@9324 18 ./configure \
pankso@9324 19 --enable-icon-browser &&
pankso@9324 20 make && make install
devl547@5115 21 }
devl547@5115 22
devl547@5115 23 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@5115 24 genpkg_rules()
devl547@5115 25 {
devl547@5115 26 mkdir -p $fs/usr
devl547@5115 27 cp -a $_pkg/usr/bin $fs/usr
devl547@5115 28 }