wok view vte/receipt @ rev 2803

Add:cdrkit-isoinfo for isoinfo utils
author Rohit Joshi <jozee@slitaz.org>
date Tue Apr 28 15:36:12 2009 +0000 (2009-04-28)
parents 27a68753fff8
children 058ce66ec270
line source
1 # SliTaz package receipt.
3 PACKAGE="vte"
4 VERSION="0.19.4"
5 CATEGORY="utilities"
6 SHORT_DESC="Terminal capabilities for GTK+ widgets."
7 DEPENDS="gtk+ ncurses xorg-libXdamage"
8 BUILD_DEPENDS="gtk+-dev perl perl-xml-parser"
9 MAINTAINER="pankso@slitaz.org"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnome.org/"
12 WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/vte/0.19/$TARBALL"
13 LOCALE=""
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --libexecdir=/usr/lib/vte \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 --with-html-dir=/usr/share/doc \
25 --with-pcre \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$PWD/_pkg install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib $fs/usr/share
35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
36 cp -a $_pkg/usr/lib/vte $fs/usr/lib
37 cp -a $_pkg/usr/share/vte $fs/usr/share
38 }