wok-current annotate pyxml/receipt @ rev 2161
Add linux-memstick
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Feb 07 08:43:48 2009 +0000 (2009-02-07) |
parents | |
children | b3be3ba25297 |
rev | line source |
---|---|
pascal@1644 | 1 # SliTaz package receipt. |
pascal@1644 | 2 |
pascal@1644 | 3 PACKAGE="pyxml" |
pascal@1644 | 4 VERSION="0.8.4" |
pascal@1644 | 5 CATEGORY="development" |
pascal@1644 | 6 SHORT_DESC="Pythonic binding for xml..." |
pascal@1644 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@1644 | 8 SOURCE="PyXML" |
pascal@1644 | 9 TARBALL="$SOURCE-$VERSION.tar.gz" |
pascal@1644 | 10 WEB_SITE="http://sourceforge.net/projects/pyxml/" |
pascal@1644 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@1644 | 12 DEPENDS="python" |
pascal@1644 | 13 BUILD_DEPENDS="python" |
pascal@1644 | 14 |
pascal@1644 | 15 # Rules to configure and make the package. |
pascal@1644 | 16 compile_rules() |
pascal@1644 | 17 { |
pascal@1644 | 18 cd $src |
pascal@1644 | 19 python setup.py install --root=$PWD/_pkg |
pascal@1644 | 20 } |
pascal@1644 | 21 |
pascal@1644 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1644 | 23 genpkg_rules() |
pascal@1644 | 24 { |
pascal@1644 | 25 cp -a $_pkg/usr $fs |
pascal@1644 | 26 } |
pascal@1644 | 27 |