wok view pycairo/receipt @ rev 1177

Add iksemel
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 02 21:35:07 2008 +0000 (2008-08-02)
parents
children c1ff74d9b6f4
line source
1 # SliTaz package receipt.
3 PACKAGE="pycairo"
4 VERSION="1.4.12"
5 CATEGORY="development"
6 SHORT_DESC="Python bindings for the cairo graphics library."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.cairographics.org/pycairo/"
11 WGET_URL="http://www.cairographics.org/releases/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/lib
27 cp -a $_pkg/usr/lib/python2.5 $fs/usr/lib
28 }