wok view vte/receipt @ rev 617

busybox: typos (patch compatibility busybox/patch 1.7.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 19 11:55:34 2008 +0000 (2008-04-19)
parents cf22fee17710
children 885cdc591a2b
line source
1 # SliTaz package receipt.
3 PACKAGE="vte"
4 VERSION="0.15.6"
5 CATEGORY="utilities"
6 SHORT_DESC="Terminal capabilities for GTK+ widgets."
7 DEPENDS="gtk+"
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.15/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --libexecdir=/usr/lib/vte \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 --with-html-dir=/usr/share/doc \
24 --with-pcre \
25 $CONFIGURE_ARGS
26 make
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib $fs/usr/bin $fs/usr/share/locale
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/lib/vte $fs/usr/lib
36 cp -a $_pkg/usr/bin/vte $fs/usr/bin
37 cp -a $_pkg/usr/share/vte $fs/usr/share
38 strip -s $fs/usr/lib/vte/* 2>/dev/null
39 }