wok-4.x annotate pyparsing/receipt @ rev 1950
tazndis, fix load_ndiswrapper
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sun Dec 28 23:59:28 2008 +0100 (2008-12-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 |