wok view pydot/receipt @ rev 3317

add pv | pipe viewer for unix
author Allan Pinto <allan316@gmail.com>
date Mon Jun 08 11:02:28 2009 +0000 (2009-06-08)
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 }