wok-6.x annotate virtualenv/receipt @ rev 17172
Up firefox-official (32.0.3) CVE-2014-1568
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Sep 25 15:28:17 2014 +0200 (2014-09-25) |
parents | d69f89800f8d |
children | 7390f8de9846 |
rev | line source |
---|---|
taziden@3873 | 1 # SliTaz package receipt. |
taziden@3873 | 2 |
taziden@3873 | 3 PACKAGE="virtualenv" |
slaxemulator@6455 | 4 VERSION="1.5.1" |
taziden@3873 | 5 CATEGORY="development" |
taziden@3873 | 6 SHORT_DESC="Virtual Python Environment Builder." |
taziden@3873 | 7 MAINTAINER="taziden@slitaz.org" |
pascal@15363 | 8 LICENSE="MIT" |
taziden@3873 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
taziden@3873 | 10 WEB_SITE="http://pypi.python.org/pypi/virtualenv" |
taziden@3873 | 11 WGET_URL="http://pypi.python.org/packages/source/v/virtualenv/$TARBALL" |
pascal@15363 | 12 TAGS="python" |
pascal@15363 | 13 |
taziden@3873 | 14 DEPENDS="python python-dev" |
taziden@3873 | 15 BUILD_DEPENDS="python python-dev" |
taziden@3873 | 16 |
taziden@3873 | 17 # Rules to configure and make the package. |
taziden@3873 | 18 compile_rules() |
taziden@3873 | 19 { |
taziden@3873 | 20 cd $src |
pascal@15363 | 21 python setup.py install --root=$DESTDIR |
taziden@3873 | 22 } |
taziden@3873 | 23 |
taziden@3873 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
taziden@3873 | 25 genpkg_rules() |
taziden@3873 | 26 { |
pascal@15363 | 27 cp -a $install/usr $fs |
taziden@3873 | 28 } |
taziden@3873 | 29 |