wok-4.x view pydot/receipt @ rev 3292
Update: h8300-gcc3 (add clean_wok)
author | Matthew Sheets <rcx@zoominternet.net> |
---|---|
date | Wed Jun 03 15:26:31 2009 +0000 (2009-06-03) |
parents | f6b45104a7c4 |
children |
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/usr
25 cp -a $_pkg/usr/lib $fs/usr
26 }