wok view terminal/receipt @ rev 13015

Up: bison (2.5.1)
author Christophe Lincoln <pankso@slitaz.org>
date Fri Jun 08 21:02:10 2012 +0200 (2012-06-08)
parents ca941bd0c083
children 7896f0694ef6
line source
1 # SliTaz package receipt.
3 PACKAGE="terminal"
4 VERSION="0.4.6"
5 CATEGORY="x-window"
6 SHORT_DESC="Terminal emunaltor for Xfce Desktop Environment"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libexo vte startup-notification dbus"
9 BUILD_DEPENDS="libexo-dev gtk+-dev vte-dev dbus-dev startup-notification-dev intltool pkg-config util-linux-uuid-dev"
10 SOURCE="Terminal"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.xfce.org/"
13 WGET_URL="http://archive.xfce.org/src/apps/$PACKAGE/${VERSION%.*}/$TARBALL"
14 TAGS="terminal"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man --libexecdir=/usr/lib/xfce4 \
22 --disable-static $CONFIGURE_ARGS && \
23 make && make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share/locale
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
33 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
34 cp -a $_pkg/usr/share/applications $fs/usr/share
35 }