wok annotate terminal/receipt @ rev 4677

Up: intltool (0.40.6)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Dec 30 10:26:31 2009 +0100 (2009-12-30)
parents 3445df32b151
children 866fa2493b1b
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"
erjo@4144 14
erjo@4144 15 # Rules to configure and make the package.
erjo@4144 16 compile_rules()
erjo@4144 17 {
erjo@4144 18 cd $src
erjo@4144 19 ./configure --prefix=/usr --infodir=/usr/share/info \
erjo@4144 20 --mandir=/usr/share/man $CONFIGURE_ARGS && \
erjo@4144 21 make && make DESTDIR=$PWD/_pkg install
erjo@4144 22 }
erjo@4144 23
erjo@4144 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4144 25 genpkg_rules()
erjo@4144 26 {
erjo@4144 27 mkdir -p $fs/usr/share/locale
erjo@4144 28
erjo@4144 29 cp -a $_pkg/usr/bin $fs/usr
erjo@4144 30 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@4144 31 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
erjo@4144 32 cp -a $_pkg/usr/share/applications $fs/usr/share
erjo@4144 33 }
erjo@4144 34