wok annotate pydot/receipt @ rev 2479
lame, lbreakout2, libQt*: update depends
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Mar 15 20:40:56 2009 +0000 (2009-03-15) |
parents | |
children | 902f1f28f9cb |
rev | line source |
---|---|
pascal@2201 | 1 # SliTaz package receipt. |
pascal@2201 | 2 |
pascal@2201 | 3 PACKAGE="pydot" |
pascal@2201 | 4 VERSION="1.0.2" |
pascal@2201 | 5 CATEGORY="development" |
pascal@2201 | 6 SHORT_DESC="Python interface to Graphviz's dot language." |
pascal@2201 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@2201 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@2201 | 9 WEB_SITE="http://code.google.com/p/pydot/" |
pascal@2201 | 10 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" |
pascal@2201 | 11 DEPENDS="python pyparsing graphviz" |
pascal@2201 | 12 |
pascal@2201 | 13 # Rules to configure and make the package. |
pascal@2201 | 14 compile_rules() |
pascal@2201 | 15 { |
pascal@2201 | 16 cd $src |
pascal@2201 | 17 python setup.py build |
pascal@2201 | 18 python setup.py install --root=$PWD/_pkg |
pascal@2201 | 19 } |
pascal@2201 | 20 |
pascal@2201 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2201 | 22 genpkg_rules() |
pascal@2201 | 23 { |
pascal@2201 | 24 mkdir -p $fs |
pascal@2201 | 25 cp -a $_pkg/usr $fs |
pascal@2201 | 26 } |
pascal@2201 | 27 |