wok-next annotate pangomm/receipt @ rev 8267
Added xorg-libXmu and xorg-libXaw to xorg-xclock depends. Added xorg-libXmu-dev and xorg-libXaw-dev to xorg-xclock depends.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sat Jan 29 22:47:27 2011 +0000 (2011-01-29) |
parents | 971a877972d9 |
children | 3e8c27adff23 |
rev | line source |
---|---|
pankso@2541 | 1 # SliTaz package receipt. |
pankso@2541 | 2 |
pankso@2541 | 3 PACKAGE="pangomm" |
slaxemulator@5435 | 4 VERSION="2.26.2" |
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" |
pankso@2541 | 9 BUILD_DEPENDS="pixman-dev cairomm-dev glibmm-dev libgiomm-dev" |
slaxemulator@7092 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
slaxemulator@7092 | 11 WEB_SITE="http://www.gnome.org/" |
slaxemulator@7092 | 12 WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$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 \ |
pankso@2541 | 19 --prefix=/usr \ |
pankso@2541 | 20 --mandir=/usr/share/man \ |
slaxemulator@5463 | 21 --disable-documentation \ |
pankso@2541 | 22 $CONFIGURE_ARGS && |
pankso@2541 | 23 make && |
pankso@2541 | 24 make DESTDIR=$PWD/_pkg install |
pankso@2541 | 25 } |
pankso@2541 | 26 |
pankso@2541 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@2541 | 28 genpkg_rules() |
pankso@2541 | 29 { |
pankso@2541 | 30 mkdir -p $fs/usr/lib |
pankso@2541 | 31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@2541 | 32 } |
slaxemulator@6397 | 33 |