wok view stjerm-terminal/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 b67414949731
children 6135577f4d08
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"
13 TAGS="terminal"
15 DEPENDS="vte"
16 BUILD_DEPENDS="vte-dev glib-dev gtk+-dev automake"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./autogen.sh
23 ./configure \
24 --prefix=/usr \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make && make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/bin $fs/usr
36 }