wok view pydot/receipt @ rev 2503

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