wok annotate tilda/receipt @ rev 9757

tilda: fix BUILD_DEPENDS (again)
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 11 14:03:53 2011 +0200 (2011-05-11)
parents 8422d231d35b
children 277f0ebcf4df
rev   line source
jozee@4585 1 # SliTaz package receipt.
jozee@4585 2
jozee@4585 3 PACKAGE="tilda"
jozee@4585 4 VERSION="0.9.6"
jozee@4585 5 CATEGORY="utilities"
jozee@4585 6 MAINTAINER="jozee@slitaz.org"
jozee@4585 7 SHORT_DESC="Linux terminal based on classic terminals from first person shooter games."
jozee@4585 8 WEB_SITE="http://tilda.sourceforge.net"
jozee@4585 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
jozee@4585 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
jozee@4585 11 TAGS="terminal"
jozee@4585 12
pankso@9756 13 DEPENDS="vte libconfuse libglade"
pankso@9757 14 BUILD_DEPENDS="flex vte-dev libglade-dev libconfuse"
jozee@4585 15
jozee@4585 16 # Rules to configure and make the package.
jozee@4585 17 compile_rules()
jozee@4585 18 {
jozee@4585 19 cd $src
gokhlayeh@8685 20 ./configure && make && make install
jozee@4585 21 }
jozee@4585 22
jozee@4585 23 # Rules to gen a SliTaz package suitable for Tazpkg.
jozee@4585 24 genpkg_rules()
jozee@4585 25 {
jozee@4623 26 mkdir -p $fs/usr/share/applications/
jozee@4585 27 cp -a $_pkg/usr/bin $fs/usr
jozee@4585 28 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
jozee@4622 29 cp -a $_pkg/usr/share/tilda.glade $fs/usr/share
jozee@4585 30 # Apply modified .desktop file to suit SliTaz.
jozee@4585 31 cp -a stuff/tilda.desktop $fs/usr/share/applications/
jozee@4585 32 }