wok view virtualenv/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
parents a86dc82474f8
children 2a21689b0af7
line source
1 # SliTaz package receipt.
3 PACKAGE="virtualenv"
4 VERSION="1.5.1"
5 CATEGORY="development"
6 SHORT_DESC="Virtual Python Environment Builder."
7 MAINTAINER="taziden@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://pypi.python.org/pypi/virtualenv"
10 WGET_URL="http://pypi.python.org/packages/source/v/virtualenv/$TARBALL"
11 DEPENDS="python python-dev"
12 BUILD_DEPENDS="python python-dev"
13 TAGS="python"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 python setup.py install --root=$PWD/_pkg
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 cp -a $_pkg/usr $fs
26 }