# HG changeset patch # User Pascal Bellard # Date 1234220820 0 # Node ID f6b45104a7c43c4a8c852ee43ce514fdc92f356a # Parent d0816a914cdc60ec5a5a3cbd9be595027844eb44 Add pydot diff -r d0816a914cdc -r f6b45104a7c4 pydot/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pydot/receipt Mon Feb 09 23:07:00 2009 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="pydot" +VERSION="1.0.2" +CATEGORY="development" +SHORT_DESC="Python interface to Graphviz's dot language." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://code.google.com/p/pydot/" +WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" +DEPENDS="python pyparsing graphviz" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build + python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs + cp -a $_pkg/usr $fs +} +