wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="pangomm"
4 VERSION="2.35.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Pango binding for GTKmm."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="https://www.gnome.org/"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="pixman cairomm glibmm libgiomm pango gcc-lib-base"
14 BUILD_DEPENDS="cairo-dev cairomm-dev glibmm-dev pango-dev libxml2-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --disable-documentation \
22 $CONFIGURE_ARGS &&
23 make &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/usr/lib/*.so* $fs/usr/lib
32 }