wok annotate yad/receipt @ rev 12224

Up slitaz-boot-scripts (4.7.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 06 08:20:43 2012 +0200 (2012-04-06)
parents f985854df806
children 50f5543dd76b
rev   line source
devl547@5115 1 # SliTaz package receipt.
devl547@5115 2
devl547@5115 3 PACKAGE="yad"
pankso@12021 4 VERSION="0.17.1.1"
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"
slaxemulator@10098 11
slaxemulator@10098 12 DEPENDS="gtk+"
pankso@11967 13 BUILD_DEPENDS="intltool gettext pkg-config glib-dev gtk+-dev"
devl547@5115 14
devl547@5115 15 # Rules to configure and make the package.
devl547@5115 16 compile_rules()
devl547@5115 17 {
devl547@5115 18 cd $src
pankso@9324 19 ./configure \
pankso@9324 20 --enable-icon-browser &&
pankso@9324 21 make && make install
devl547@5115 22 }
devl547@5115 23
devl547@5115 24 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@5115 25 genpkg_rules()
devl547@5115 26 {
samuel_trassare@11763 27 mkdir -p $fs/usr/bin \
samuel_trassare@11763 28 $fs/usr/share
pankso@11967 29 cp -a $install/usr/bin/* $fs/usr/bin
pankso@11967 30 cp -ar $install/usr/share/applications $fs/usr/share
pankso@11967 31 cp -ar $install/usr/share/icons $fs/usr/share
devl547@5115 32 }