wok annotate terminal/receipt @ rev 4144

Add: orage, thuna, thunar-dev, terminal
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Sep 20 13:42:58 2009 +0000 (2009-09-20)
parents
children 3445df32b151
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/"
erjo@4144 13 WGET_URL="http://www.p0llux.be/xfce/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