wok annotate python-beaker/receipt @ rev 3806

python-beaker: fix wget_url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Aug 05 17:23:14 2009 +0200 (2009-08-05)
parents 7f46b72fa943
children 460d00ef1f0e
rev   line source
taziden@3777 1 # SliTaz package receipt.
taziden@3777 2
taziden@3777 3 PACKAGE="python-beaker"
taziden@3777 4 VERSION="1.3.1"
taziden@3777 5 CATEGORY="development"
taziden@3777 6 SHORT_DESC="Cache and Session Library"
taziden@3777 7 MAINTAINER="taziden@slitaz.org"
taziden@3777 8 SOURCE="Beaker"
taziden@3777 9 DEPENDS="python"
taziden@3777 10 BUILD_DEPENDS="python python-dev"
taziden@3777 11 TARBALL="$SOURCE-$VERSION.tar.gz"
taziden@3777 12 WEB_SITE="http://pylonshq.com"
pascal@3806 13 WGET_URL="$WEB_SITE/download/0.9.7/$TARBALL"
taziden@3777 14 TAGS="python"
taziden@3777 15
taziden@3777 16 # Rules to configure and make the package.
taziden@3777 17 compile_rules()
taziden@3777 18 {
taziden@3777 19 cd $src
taziden@3777 20 python setup.py install --root=$PWD/_pkg
taziden@3777 21
taziden@3777 22 }
taziden@3777 23
taziden@3777 24 # Rules to gen a SliTaz package suitable for Tazpkg.
taziden@3777 25 genpkg_rules()
taziden@3777 26 {
taziden@3777 27 cp -a $_pkg/usr/ $fs
taziden@3777 28 }
taziden@3777 29