wok-next view python-pygraphviz/receipt @ rev 20921

flake8 -> python-flake8
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Aug 22 11:18:36 2018 +0300 (2018-08-22)
parents 7390f8de9846
children 8b5b2a6d07b8
line source
1 # SliTaz package receipt.
3 PACKAGE="python-pygraphviz"
4 VERSION="0.99.1"
5 CATEGORY="development"
6 SHORT_DESC="A Python wrapper for the Graphviz Agraph data structure."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="http://pypi.python.org/pypi/pygraphviz"
10 REPOLOGY="python:pygraphviz"
12 SOURCE="pygraphviz"
13 TARBALL="$SOURCE-$VERSION.tar.gz"
14 WGET_URL="http://networkx.lanl.gov/download/$SOURCE/$TARBALL"
16 DEPENDS="graphviz python"
17 BUILD_DEPENDS="graphviz-dev python-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 python setup.py build
23 python setup.py install --root=$DESTDIR
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $install/usr/lib $fs/usr
31 }