wok annotate yad/receipt @ rev 8915

gtk+: add bash in BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 28 17:24:10 2011 +0100 (2011-02-28)
parents f510ed9a2782
children c965be0dacea
rev   line source
devl547@5115 1 # SliTaz package receipt.
devl547@5115 2
devl547@5115 3 PACKAGE="yad"
pankso@7877 4 VERSION="0.7.2"
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
devl547@5115 17 ./configure --prefix=/usr --infodir=/usr/share/info \
devl547@5115 18 --mandir=/usr/share/man $CONFIGURE_ARGS &&
devl547@5115 19 make &&
devl547@5115 20 make DESTDIR=$PWD/_pkg 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 }