wok-stable annotate vte/receipt @ rev 1455
atl2 kqemu madwifi mISDN ndiswrapper squashfs-module zaptel: fix depmod in post_install
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Oct 03 16:09:39 2008 +0000 (2008-10-03) |
parents | 885cdc591a2b |
children | fc5fd4ecc80a |
rev | line source |
---|---|
pankso@189 | 1 # SliTaz package receipt. |
pankso@189 | 2 |
pankso@189 | 3 PACKAGE="vte" |
pankso@641 | 4 VERSION="0.16.13" |
pankso@211 | 5 CATEGORY="utilities" |
pascal@228 | 6 SHORT_DESC="Terminal capabilities for GTK+ widgets." |
pascal@228 | 7 DEPENDS="gtk+" |
pascal@228 | 8 BUILD_DEPENDS="gtk+-dev perl perl-xml-parser" |
pankso@189 | 9 MAINTAINER="pankso@slitaz.org" |
pankso@189 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@189 | 11 WEB_SITE="http://www.gnome.org/" |
pankso@641 | 12 WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/vte/0.16/$TARBALL" |
pankso@641 | 13 LOCALE="" |
pankso@189 | 14 |
pankso@189 | 15 # Rules to configure and make the package. |
pankso@189 | 16 compile_rules() |
pankso@189 | 17 { |
pankso@189 | 18 cd $src |
pankso@189 | 19 ./configure \ |
pankso@189 | 20 --prefix=/usr \ |
pankso@189 | 21 --libexecdir=/usr/lib/vte \ |
pankso@189 | 22 --infodir=/usr/share/info \ |
pankso@189 | 23 --mandir=/usr/share/man \ |
pankso@189 | 24 --with-html-dir=/usr/share/doc \ |
pankso@189 | 25 --with-pcre \ |
pankso@189 | 26 $CONFIGURE_ARGS |
pankso@189 | 27 make |
pankso@189 | 28 make DESTDIR=$PWD/_pkg install |
pankso@189 | 29 } |
pankso@189 | 30 |
pankso@189 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@189 | 32 genpkg_rules() |
pankso@189 | 33 { |
pankso@642 | 34 mkdir -p $fs/usr/lib $fs/usr/share |
pankso@189 | 35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@189 | 36 cp -a $_pkg/usr/lib/vte $fs/usr/lib |
pankso@642 | 37 cp -a $_pkg/usr/share/vte $fs/usr/share |
pankso@189 | 38 } |