# SliTaz package receipt.

PACKAGE="pangomm"
VERSION="2.28.4"
CATEGORY="x-window"
SHORT_DESC="Pango binding for GTKmm."
MAINTAINER="pankso@slitaz.org"
DEPENDS="pixman cairomm glibmm libgiomm pango gcc-lib-base"
BUILD_DEPENDS="cairomm-dev glibmm-dev"
TARBALL="$PACKAGE-$VERSION.tar.bz2"
WEB_SITE="http://www.gnome.org/"
WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"

# Rules to configure and make the package.
compile_rules()
{
    cd $src
    ./configure \
	--disable-documentation \
	$CONFIGURE_ARGS &&
    make &&
    make install
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs/usr/lib
	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
}