wok view vte/receipt @ rev 7547

Up: clutter-gtk to 0.10.8.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Dec 07 21:07:29 2010 +0000 (2010-12-07)
parents 724768c88475
children 4a7ec6b23eed
line source
1 # SliTaz package receipt.
3 PACKAGE="vte"
4 VERSION="0.26.2"
5 CATEGORY="utilities"
6 SHORT_DESC="Terminal capabilities for GTK+ widgets."
7 DEPENDS="gtk+ ncurses xorg-libXdamage"
8 BUILD_DEPENDS="pygtk-dev gtk+-dev perl perl-xml-parser intltool ncurses-dev gobject-introspection-dev"
9 MAINTAINER="pankso@slitaz.org"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.gnome.org/"
12 WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/$PACKAGE/${VERSION%.*}/$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 --enable-introspection \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib $fs/usr/share
36 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
37 cp -a $_pkg/usr/lib/vte $fs/usr/lib
38 cp -a $_pkg/usr/share/vte $fs/usr/share
39 }