wok annotate pangomm/receipt @ rev 8981

Automated merge with http://hg.slitaz.org/wok
author Antoine Bodin <gokhlayeh@slitaz.org>
date Wed Mar 02 20:58:26 2011 +0100 (2011-03-02)
parents f4afc6def4c7
children c07b7792db13
rev   line source
pankso@2541 1 # SliTaz package receipt.
pankso@2541 2
pankso@2541 3 PACKAGE="pangomm"
slaxemulator@8445 4 VERSION="2.26.3"
pankso@2541 5 CATEGORY="x-window"
pankso@2541 6 SHORT_DESC="Pango binding for GTKmm."
pankso@2541 7 MAINTAINER="pankso@slitaz.org"
pascal@5005 8 DEPENDS="pixman cairomm glibmm libgiomm pango gcc-lib-base"
pankso@2541 9 BUILD_DEPENDS="pixman-dev cairomm-dev glibmm-dev libgiomm-dev"
slaxemulator@7092 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
slaxemulator@7092 11 WEB_SITE="http://www.gnome.org/"
slaxemulator@7092 12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
pankso@2541 13
pankso@2541 14 # Rules to configure and make the package.
pankso@2541 15 compile_rules()
pankso@2541 16 {
pankso@2541 17 cd $src
pankso@2541 18 ./configure \
pankso@2541 19 --prefix=/usr \
pankso@2541 20 --mandir=/usr/share/man \
slaxemulator@5463 21 --disable-documentation \
pankso@2541 22 $CONFIGURE_ARGS &&
pankso@2541 23 make &&
pankso@2541 24 make DESTDIR=$PWD/_pkg install
pankso@2541 25 }
pankso@2541 26
pankso@2541 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@2541 28 genpkg_rules()
pankso@2541 29 {
pankso@2541 30 mkdir -p $fs/usr/lib
pankso@2541 31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@2541 32 }
slaxemulator@6397 33