wok annotate pangomm/receipt @ rev 13029
gnome-keyring: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Jun 11 21:43:16 2012 +0200 (2012-06-11) |
parents | c4884f4da7e8 |
children | 76b72f1ad63c |
rev | line source |
---|---|
pankso@2541 | 1 # SliTaz package receipt. |
pankso@2541 | 2 |
pankso@2541 | 3 PACKAGE="pangomm" |
slaxemulator@11116 | 4 VERSION="2.28.4" |
pankso@2541 | 5 CATEGORY="x-window" |
pankso@2541 | 6 SHORT_DESC="Pango binding for GTKmm." |
pankso@2541 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@5005 | 8 DEPENDS="pixman cairomm glibmm libgiomm pango gcc-lib-base" |
pascal@12617 | 9 BUILD_DEPENDS="cairo-dev cairomm-dev glibmm-dev pango-dev" |
slaxemulator@7092 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
slaxemulator@7092 | 11 WEB_SITE="http://www.gnome.org/" |
slaxemulator@9529 | 12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" |
pankso@2541 | 13 |
pankso@2541 | 14 # Rules to configure and make the package. |
pankso@2541 | 15 compile_rules() |
pankso@2541 | 16 { |
pankso@2541 | 17 cd $src |
pankso@2541 | 18 ./configure \ |
slaxemulator@10085 | 19 --disable-documentation \ |
slaxemulator@10085 | 20 $CONFIGURE_ARGS && |
pankso@2541 | 21 make && |
slaxemulator@9529 | 22 make install |
pankso@2541 | 23 } |
pankso@2541 | 24 |
pankso@2541 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@2541 | 26 genpkg_rules() |
pankso@2541 | 27 { |
pankso@2541 | 28 mkdir -p $fs/usr/lib |
pankso@2541 | 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@2541 | 30 } |
slaxemulator@6397 | 31 |