wok annotate virtualenv/receipt @ rev 17543

Up busybox (1.23.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 27 16:55:03 2015 +0100 (2015-01-27)
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