wok view python-pydot/receipt @ rev 8717

Up: ntp to 4.2.6p3.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Feb 18 01:00:08 2011 +0000 (2011-02-18)
parents 1cfe4916e547
children fd4f1e692109
line source
1 # SliTaz package receipt.
3 PACKAGE="python-pydot"
4 SOURCE="pydot"
5 VERSION="1.0.2"
6 CATEGORY="development"
7 SHORT_DESC="Python interface to Graphviz's dot language."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://code.google.com/p/pydot/"
11 WGET_URL="http://$SOURCE.googlecode.com/files/$TARBALL"
12 DEPENDS="python python-pyparsing graphviz"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 python setup.py build
19 python setup.py install --root=$PWD/_pkg
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $_pkg/usr/lib $fs/usr
27 }
29 # Remove old package.
30 post_install()
31 {
32 rm -rf $1/var/lib/tazpkg/installed/pydot
33 }