wok-next annotate vte/receipt @ rev 4922
php-mcrypt: fix post_install (again)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Feb 15 20:51:11 2010 +0100 (2010-02-15) |
parents | ca1eb34ac82d |
children | 3974255ebbd6 |
rev | line source |
---|---|
pankso@189 | 1 # SliTaz package receipt. |
pankso@189 | 2 |
pankso@189 | 3 PACKAGE="vte" |
erjo@4723 | 4 VERSION="0.23.1" |
pankso@211 | 5 CATEGORY="utilities" |
pascal@228 | 6 SHORT_DESC="Terminal capabilities for GTK+ widgets." |
pascal@2526 | 7 DEPENDS="gtk+ ncurses xorg-libXdamage" |
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/" |
erjo@4723 | 12 WGET_URL="ftp://ftp.gnome.org/pub/GNOME/sources/vte/${VERSION%.*}/$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 \ |
pascal@2438 | 26 $CONFIGURE_ARGS && |
pascal@2438 | 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 } |