wok annotate pangomm/receipt @ rev 5463

Disable docmentation for pangomm so it can be build.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed May 05 12:53:03 2010 +0000 (2010-05-05)
parents 6a4a0f71741d
children 971a877972d9
rev   line source
pankso@2541 1 # SliTaz package receipt.
pankso@2541 2
pankso@2541 3 PACKAGE="pangomm"
slaxemulator@5435 4 VERSION="2.26.2"
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"
pankso@2541 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@2541 11 WEB_SITE="http://ftp.gnome.org/pub/gnome/sources/pangomm/"
slaxemulator@5435 12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/pangomm/${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 }