wok annotate terminal/receipt @ rev 4973

add/improve TAGS t* receipts
author Rohit Joshi <jozee@slitaz.org>
date Wed Feb 24 12:13:18 2010 +0000 (2010-02-24)
parents 71185dbe9adf
children ffa7363d2338
rev   line source
erjo@4144 1 # SliTaz package receipt.
erjo@4144 2
erjo@4144 3 PACKAGE="terminal"
erjo@4144 4 VERSION="0.2.12"
erjo@4144 5 CATEGORY="x-window"
erjo@4144 6 SHORT_DESC="Terminal emunaltor for Xfce Desktop Environment"
erjo@4144 7 MAINTAINER="erjo@slitaz.org"
erjo@4144 8 DEPENDS="libexo vte startup-notification dbus"
erjo@4144 9 BUILD_DEPENDS="libexo-dev vte-dev dbus-dev startup-notification-dev"
erjo@4144 10 SOURCE="Terminal"
erjo@4144 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
erjo@4144 12 WEB_SITE="http://www.xfce.org/"
pascal@4222 13 WGET_URL="$WEB_SITE/archive/xfce/4.6.1/src/$TARBALL"
jozee@4973 14 TAGS="terminal"
erjo@4144 15
erjo@4144 16 # Rules to configure and make the package.
erjo@4144 17 compile_rules()
erjo@4144 18 {
erjo@4144 19 cd $src
erjo@4144 20 ./configure --prefix=/usr --infodir=/usr/share/info \
erjo@4144 21 --mandir=/usr/share/man $CONFIGURE_ARGS && \
erjo@4144 22 make && make DESTDIR=$PWD/_pkg install
erjo@4144 23 }
erjo@4144 24
erjo@4144 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4144 26 genpkg_rules()
erjo@4144 27 {
erjo@4144 28 mkdir -p $fs/usr/share/locale
erjo@4144 29
erjo@4144 30 cp -a $_pkg/usr/bin $fs/usr
erjo@4144 31 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@4144 32 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
erjo@4144 33 cp -a $_pkg/usr/share/applications $fs/usr/share
erjo@4144 34 }
erjo@4144 35