wok annotate pangomm/receipt @ rev 20760

updated cairo packages (1.14.4 -> 1.16.0)
author Hans-G?nter Theisgen
date Tue Feb 12 17:35:34 2019 +0100 (2019-02-12)
parents f48520919b85
children 5d79829fa876
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"
pascal@20421 10 WEB_SITE="https://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