wok annotate pycairo/receipt @ rev 6592
remove hard coded python2.5
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Oct 09 15:31:15 2010 +0200 (2010-10-09) |
parents | af9536ce31f7 |
children | d0fa681cee8d |
rev | line source |
---|---|
erjo@1175 | 1 # SliTaz package receipt. |
erjo@1175 | 2 |
erjo@1175 | 3 PACKAGE="pycairo" |
erjo@4694 | 4 VERSION="1.8.2" |
erjo@1175 | 5 CATEGORY="development" |
erjo@1175 | 6 SHORT_DESC="Python bindings for the cairo graphics library." |
erjo@1175 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@2455 | 8 DEPENDS="cairo expat fontconfig freetype xorg-libX11 xorg-libXau \ |
pascal@2844 | 9 xorg-libXdmcp xorg-libXrender xcb-util" |
pascal@1465 | 10 BUILD_DEPENDS="pkg-config cairo cairo-dev xorg-xproto" |
erjo@1175 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
erjo@1175 | 12 WEB_SITE="http://www.cairographics.org/pycairo/" |
erjo@1175 | 13 WGET_URL="http://www.cairographics.org/releases/$TARBALL" |
erjo@1175 | 14 |
erjo@1175 | 15 # Rules to configure and make the package. |
erjo@1175 | 16 compile_rules() |
erjo@1175 | 17 { |
erjo@1175 | 18 cd $src |
erjo@1175 | 19 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@1465 | 20 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1465 | 21 make && |
erjo@1175 | 22 make DESTDIR=$PWD/_pkg install |
erjo@1175 | 23 } |
erjo@1175 | 24 |
erjo@1175 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@1175 | 26 genpkg_rules() |
erjo@1175 | 27 { |
pascal@6592 | 28 PYTHON_LIB=$(grep ^VERSION= $WOK/python/receipt | sed 's/.*"\(...\).*/\1/') |
erjo@1175 | 29 mkdir -p $fs/usr/lib |
pascal@6592 | 30 cp -a $_pkg/usr/lib/$PYTHON_LIB $fs/usr/lib |
erjo@1175 | 31 } |
erjo@1175 | 32 |