wok view tilda/receipt @ rev 10075

Up: parted to 2.4. Add $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 05:39:49 2011 +0000 (2011-05-20)
parents 8422d231d35b
children 277f0ebcf4df
line source
1 # SliTaz package receipt.
3 PACKAGE="tilda"
4 VERSION="0.9.6"
5 CATEGORY="utilities"
6 MAINTAINER="jozee@slitaz.org"
7 SHORT_DESC="Linux terminal based on classic terminals from first person shooter games."
8 WEB_SITE="http://tilda.sourceforge.net"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 TAGS="terminal"
13 DEPENDS="vte libconfuse libglade"
14 BUILD_DEPENDS="flex vte-dev libglade-dev libconfuse"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share/applications/
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
29 cp -a $_pkg/usr/share/tilda.glade $fs/usr/share
30 # Apply modified .desktop file to suit SliTaz.
31 cp -a stuff/tilda.desktop $fs/usr/share/applications/
32 }