wok annotate pangomm/receipt @ rev 10195
Up: mpg123 to 1.13.3.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri May 20 22:58:46 2011 +0000 (2011-05-20) |
parents | 02ea5970d0c3 |
children | 594242fe0541 |
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@9721 | 9 BUILD_DEPENDS="cairomm-dev glibmm-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 |