wok view stjerm-terminal/receipt @ rev 16493

ARM: add tk (so we may have Python IDLE)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 23 15:29:12 2014 +0200 (2014-04-23)
parents 3aba2afc1a56
children 5d53e8ccbc8d
line source
1 # SliTaz package receipt.
3 PACKAGE="stjerm-terminal"
4 SOURCE="stjerm"
5 VERSION="0.11"
6 CATEGORY="x-window"
7 SHORT_DESC="Stjerm is a quake-like terminal emulator. It's window is shown with a key shortcut."
8 MAINTAINER="mallory@sweetpeople.org"
9 LICENSE="GPL2"
10 TARBALL="$SOURCE-$VERSION.tar.gz"
11 WEB_SITE="http://code.google.com/p/$PACKAGE/"
12 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
14 DEPENDS="vte"
15 BUILD_DEPENDS="vte-dev glib-dev gtk+-dev automake"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./autogen.sh
22 ./configure \
23 --prefix=/usr \
24 --infodir=/usr/share/info \
25 --mandir=/usr/share/man \
26 $CONFIGURE_ARGS &&
27 make && make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 }