wok view cairo-xcb/receipt @ rev 2758

Add cairo-xcb
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 26 21:12:53 2009 +0200 (2009-04-26)
parents
children 5444cac7c407
line source
1 # SliTaz package receipt.
3 PACKAGE="cairo-xcb"
4 VERSION="1.8.4"
5 CATEGORY="x-window"
6 SHORT_DESC="2D graphics library."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glib pixman libpng zlib expat fontconfig freetype xorg-libX11 \
9 xorg-libXau xorg-libXdmcp xorg-libXrender xcb-util"
10 BUILD_DEPENDS="pkg-config pixman-dev libpng-dev zlib-dev fontconfig-dev xcb-util"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.cairographics.org/"
13 WGET_URL="http://cairographics.org/releases/$TARBALL"
14 PROVIDE="cairo"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --mandir=/usr/share/man \
23 --with-html-dir=/usr/share/doc \
24 --enable-xcb \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 }