wok-stable diff cairo/receipt @ rev 1044
Fix: missing BUILD_DEPENDS for notecase
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sat Jul 12 12:31:22 2008 +0200 (2008-07-12) |
parents | ad5e33e4dad7 |
children | ae229eb38f6b |
line diff
1.1 --- a/cairo/receipt Tue Dec 18 13:47:26 2007 +0100 1.2 +++ b/cairo/receipt Sat Jul 12 12:31:22 2008 +0200 1.3 @@ -1,10 +1,12 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="cairo" 1.7 -VERSION="1.4.10" 1.8 +VERSION="1.6.4" 1.9 CATEGORY="x-window" 1.10 SHORT_DESC="2D graphics library." 1.11 MAINTAINER="pankso@slitaz.org" 1.12 +DEPENDS="glib gtk+ pixman" 1.13 +BUILD_DEPENDS="glib-dev gtk+-dev pixman-dev" 1.14 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.15 WEB_SITE="http://www.cairographics.org/" 1.16 WGET_URL="http://cairographics.org/releases/$TARBALL" 1.17 @@ -13,8 +15,11 @@ 1.18 compile_rules() 1.19 { 1.20 cd $src 1.21 - ./configure --prefix=/usr --mandir=/usr/share/man \ 1.22 - --with-html-dir=/usr/share/doc $CONFIGURE_ARGS 1.23 + ./configure \ 1.24 + --prefix=/usr \ 1.25 + --mandir=/usr/share/man \ 1.26 + --with-html-dir=/usr/share/doc \ 1.27 + $CONFIGURE_ARGS 1.28 make 1.29 make DESTDIR=$PWD/_pkg install 1.30 } 1.31 @@ -24,5 +29,4 @@ 1.32 { 1.33 mkdir -p $fs/usr/lib 1.34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.35 - strip --strip-unneeded $fs/usr/lib/* 1.36 }