wok-undigest view python-werkzeug/receipt @ rev 638

Add python packages antlr caldav gdata vatnumber vobject webdav werkzeug xlwt zsi
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 20 11:42:14 2012 +0100 (2012-02-20)
parents
children 4f33299d479b
line source
1 # SliTaz package receipt.
3 PACKAGE="python-werkzeug"
4 VERSION="8c085bba3d0abe1139fd84bdb542efdb579b0205"
5 CATEGORY="development"
6 SHORT_DESC="WSGI utility modules"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WEB_SITE="http://werkzeug.pocoo.org/"
9 GIT_URL="https://nodeload.github.com/mitsuhiko/werkzeug/tarball/$VERSION"
11 DEPENDS="python"
12 BUILD_DEPENDS="wget python python-dev setuptools"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 if [ ! -s $src ]; then
18 wget -O - $GIT_URL | tar xzf - &&
19 mv mitsuhiko-werkzeug-${VERSION:0:7} $src
20 fi
21 cd $src
22 python setup.py install --root=$DESTDIR
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 cp -a $_pkg/usr $fs
29 }