wok annotate lxterminal/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 2a5cc8208d36
children c73f683146cf
rev   line source
gokhlayeh@5956 1 # SliTaz package receipt.
gokhlayeh@5956 2
gokhlayeh@5956 3 PACKAGE="lxterminal"
devl547@11276 4 VERSION="0.1.11"
gokhlayeh@5956 5 CATEGORY="utilities"
gokhlayeh@5956 6 SHORT_DESC="LXDE X Terminal emulator."
gokhlayeh@7034 7 MAINTAINER="gokhlayeh@slitaz.org"
pascal@15379 8 LICENSE="GPL2"
gokhlayeh@5956 9 SUGGESTED="lxterminal-locales"
gokhlayeh@5956 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
gokhlayeh@5956 11 WEB_SITE="http://lxde.org"
gokhlayeh@5956 12 WGET_URL="http://downloads.sourceforge.net/project/lxde/LXTerminal%20%28terminal%20emulator%29/LXTerminal%20$VERSION/$TARBALL"
al@17501 13 TAGS="terminal"
gokhlayeh@5956 14
pascal@15379 15 DEPENDS="vte gtk+"
pascal@15379 16 BUILD_DEPENDS="intltool vte-dev vte-terminal gtk+-dev"
pascal@15379 17
gokhlayeh@5956 18 # Rules to configure and make the package.
gokhlayeh@5956 19 compile_rules()
gokhlayeh@5956 20 {
gokhlayeh@5956 21 cd $src
gokhlayeh@5956 22 ./configure \
gokhlayeh@5956 23 --prefix=/usr \
gokhlayeh@5956 24 --infodir=/usr/share/info \
gokhlayeh@5956 25 --mandir=/usr/share/man \
gokhlayeh@5956 26 $CONFIGURE_ARGS &&
pascal@15379 27 make && make DESTDIR=$DESTDIR install
gokhlayeh@5956 28 }
gokhlayeh@5956 29
gokhlayeh@5956 30 # Rules to gen a SliTaz package suitable for Tazpkg.
gokhlayeh@5956 31 genpkg_rules()
gokhlayeh@5956 32 {
gokhlayeh@5956 33 mkdir -p $fs/usr
pascal@15379 34 cp -a $install/usr/bin $fs/usr
pascal@15379 35 cp -a $install/usr/share $fs/usr
gokhlayeh@5956 36
gokhlayeh@5956 37 # Remove man & locales
gokhlayeh@5956 38 rm -rf $fs/usr/share/man
gokhlayeh@5956 39 rm -rf $fs/usr/share/locale
gokhlayeh@5956 40 }
gokhlayeh@5956 41