wok annotate python-pygraphviz/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents a97d2633b702
children d45b76bbf023
rev   line source
pascal@3790 1 # SliTaz package receipt.
pascal@3790 2
pascal@3790 3 PACKAGE="python-pygraphviz"
pascal@3790 4 VERSION="0.99.1"
pascal@3790 5 CATEGORY="development"
pascal@3790 6 SHORT_DESC="A Python wrapper for the Graphviz Agraph data structure."
pascal@3790 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@3790 8 SOURCE="pygraphviz"
pascal@3790 9 TARBALL="$SOURCE-$VERSION.tar.gz"
pascal@5005 10 DEPENDS="graphviz python"
pascal@3790 11 WEB_SITE="http://pypi.python.org/pypi/pygraphviz"
pascal@3790 12 WGET_URL="http://networkx.lanl.gov/download/$SOURCE/$TARBALL"
pascal@3790 13
pascal@3790 14 # Rules to configure and make the package.
pascal@3790 15 compile_rules()
pascal@3790 16 {
pascal@3790 17 cd $src
pascal@3790 18 python setup.py build
pascal@3790 19 python setup.py install --root=$PWD/_pkg
pascal@3790 20 }
pascal@3790 21
pascal@3790 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@3790 23 genpkg_rules()
pascal@3790 24 {
pascal@3790 25 mkdir -p $fs/usr
pascal@3790 26 cp -a $_pkg/usr/lib $fs/usr
pascal@3790 27 }
pascal@3790 28