wok view stjerm-terminal/receipt @ rev 2652

Add: stjerm-terminal
author Mallory MOLLO <mallory@skyrock.com>
date Sat Apr 18 17:51:16 2009 +0200 (2009-04-18)
parents
children 0d6fc7e516c3
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 DEPENDS="vte"
10 BUILD_DEPENDS="vte-dev"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WEB_SITE="http://code.google.com/p/$PACKAGE/"
13 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./autogen.sh
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $_pkg/usr/bin $fs/usr
33 }