wok annotate pangomm/receipt @ rev 18443

libgd: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 24 18:27:14 2015 +0200 (2015-09-24)
parents 496740a0005b
children 86790a278e70
rev   line source
pankso@2541 1 # SliTaz package receipt.
pankso@2541 2
pankso@2541 3 PACKAGE="pangomm"
devl547@17597 4 VERSION="2.35.1"
pankso@2541 5 CATEGORY="x-window"
pankso@2541 6 SHORT_DESC="Pango binding for GTKmm."
pankso@2541 7 MAINTAINER="pankso@slitaz.org"
pascal@14996 8 LICENSE="LGPL2.1"
devl547@17597 9 TARBALL="$PACKAGE-$VERSION.tar.xz"
slaxemulator@7092 10 WEB_SITE="http://www.gnome.org/"
slaxemulator@9529 11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
pankso@2541 12
pascal@14996 13 DEPENDS="pixman cairomm glibmm libgiomm pango gcc-lib-base"
pascal@15244 14 BUILD_DEPENDS="cairo-dev cairomm-dev glibmm-dev pango-dev libxml2-dev"
pascal@14996 15
pankso@2541 16 # Rules to configure and make the package.
pankso@2541 17 compile_rules()
pankso@2541 18 {
pankso@2541 19 cd $src
pankso@2541 20 ./configure \
slaxemulator@10085 21 --disable-documentation \
slaxemulator@10085 22 $CONFIGURE_ARGS &&
pankso@2541 23 make &&
slaxemulator@9529 24 make 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
pascal@14996 31 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@2541 32 }
slaxemulator@6397 33