wok diff virtualenv/receipt @ rev 16073

Add hfsprescue
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 14 10:24:30 2014 +0000 (2014-03-14)
parents d69f89800f8d
children 7390f8de9846
line diff
     1.1 --- a/virtualenv/receipt	Tue Sep 28 15:30:25 2010 +0000
     1.2 +++ b/virtualenv/receipt	Fri Mar 14 10:24:30 2014 +0000
     1.3 @@ -5,23 +5,25 @@
     1.4  CATEGORY="development"
     1.5  SHORT_DESC="Virtual Python Environment Builder."
     1.6  MAINTAINER="taziden@slitaz.org"
     1.7 +LICENSE="MIT"
     1.8  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.9  WEB_SITE="http://pypi.python.org/pypi/virtualenv"
    1.10  WGET_URL="http://pypi.python.org/packages/source/v/virtualenv/$TARBALL"
    1.11 +TAGS="python"
    1.12 +
    1.13  DEPENDS="python python-dev"
    1.14  BUILD_DEPENDS="python python-dev"
    1.15 -TAGS="python"
    1.16  
    1.17  # Rules to configure and make the package.
    1.18  compile_rules()
    1.19  {
    1.20  	cd $src
    1.21 -	python setup.py install --root=$PWD/_pkg
    1.22 +	python setup.py install --root=$DESTDIR
    1.23  }
    1.24  
    1.25  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.26  genpkg_rules()
    1.27  {
    1.28 -	cp -a $_pkg/usr $fs
    1.29 +	cp -a $install/usr $fs
    1.30  }
    1.31