wok view pycairo/receipt @ rev 5993

krb5: Upgrade to 1.8.3
author Matthew Sheets <rcx@zoominternet.net>
date Sat Aug 14 12:54:03 2010 +0000 (2010-08-14)
parents 3dce3a64acf3
children 5921dc28d8c6
line source
1 # SliTaz package receipt.
3 PACKAGE="pycairo"
4 VERSION="1.8.2"
5 CATEGORY="development"
6 SHORT_DESC="Python bindings for the cairo graphics library."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="cairo expat fontconfig freetype xorg-libX11 xorg-libXau \
9 xorg-libXdmcp xorg-libXrender xcb-util"
10 BUILD_DEPENDS="pkg-config cairo cairo-dev xorg-xproto"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.cairographics.org/pycairo/"
13 WGET_URL="http://www.cairographics.org/releases/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr --infodir=/usr/share/info \
20 --mandir=/usr/share/man $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/lib/python2.5 $fs/usr/lib
30 }