wok-6.x annotate pangomm/receipt @ rev 9529
Up: pangomm to 2.28.1.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Apr 07 23:19:07 2011 +0000 (2011-04-07) |
parents | 3e8c27adff23 |
children | 02ea5970d0c3 |
rev | line source |
---|---|
pankso@2541 | 1 # SliTaz package receipt. |
pankso@2541 | 2 |
pankso@2541 | 3 PACKAGE="pangomm" |
slaxemulator@9529 | 4 VERSION="2.28.1" |
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" |
slaxemulator@7092 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
slaxemulator@7092 | 10 WEB_SITE="http://www.gnome.org/" |
slaxemulator@9529 | 11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL" |
pankso@2541 | 12 |
pankso@2541 | 13 # Rules to configure and make the package. |
pankso@2541 | 14 compile_rules() |
pankso@2541 | 15 { |
pankso@2541 | 16 cd $src |
pankso@2541 | 17 ./configure \ |
slaxemulator@9529 | 18 --disable-documentation && |
pankso@2541 | 19 make && |
slaxemulator@9529 | 20 make install |
pankso@2541 | 21 } |
pankso@2541 | 22 |
pankso@2541 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@2541 | 24 genpkg_rules() |
pankso@2541 | 25 { |
pankso@2541 | 26 mkdir -p $fs/usr/lib |
pankso@2541 | 27 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@2541 | 28 } |
slaxemulator@6397 | 29 |