wok view tilda/receipt @ rev 17501

Normalize tags "file-manager", "web-browser", "text-editor", "terminal", and "window-manager" according to tazx.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 08 02:04:05 2015 +0200 (2015-01-08)
parents b3db3f8245d7
children 57b29da0fd99
line source
1 # SliTaz package receipt.
3 PACKAGE="tilda"
4 VERSION="0.9.6"
5 CATEGORY="utilities"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="GPL2"
8 SHORT_DESC="Linux terminal based on classic terminals from first person shooter games."
9 WEB_SITE="http://tilda.sourceforge.net"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="terminal"
14 DEPENDS="vte libconfuse libglade"
15 BUILD_DEPENDS="flex vte-dev libglade-dev libconfuse"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -i 's|<glib/.*|<glib.h>|' src/tomboykeybinder.h src/tilda.c
21 ./configure $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share/applications/
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/share/pixmaps $fs/usr/share
31 cp -a $install/usr/share/tilda.glade $fs/usr/share
32 }