wok annotate pyparsing/receipt @ rev 3213

pan: update build_depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 28 11:47:11 2009 +0200 (2009-05-28)
parents d5647924b49c
children
rev   line source
pascal@1232 1 # SliTaz package receipt.
pascal@1232 2
pascal@1232 3 PACKAGE="pyparsing"
pascal@1232 4 VERSION="1.5.0"
pascal@1232 5 CATEGORY="development"
pascal@1232 6 SHORT_DESC="Fuse Filsystem in user space."
pascal@1232 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@1232 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@1232 9 WEB_SITE="http://pyparsing.wikispaces.com/"
pascal@1232 10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@1232 11 DEPENDS="python"
pascal@1511 12 BUILD_DEPENDS="python python-dev"
pascal@1232 13
pascal@1232 14 # Rules to configure and make the package.
pascal@1232 15 compile_rules()
pascal@1232 16 {
pascal@1232 17 cd $src
pascal@1511 18 python setup.py build &&
pascal@1232 19 python setup.py install --root=$PWD/_pkg
pascal@1232 20 }
pascal@1232 21
pascal@1232 22 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1232 23 genpkg_rules()
pascal@1232 24 {
pascal@1232 25 cp -a $_pkg/usr $fs
pascal@1232 26 }
pascal@1232 27