wok view pangomm/receipt @ rev 18902

Up: 2.2.5 to 2.2.8 - Add: description file - Fix: display msg /usr/lib/bluefish
author Leonardo Laporte <hackdorte@sapo.pt>
date Fri Feb 19 07:04:57 2016 -0200 (2016-02-19)
parents 496740a0005b
children 86790a278e70
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="http://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 }