wok-stable annotate virtualenv/receipt @ rev 12465

Up e2fsprogs (1.44.2)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 04 18:42:23 2019 +0100 (2019-03-04)
parents a86dc82474f8
children
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"
taziden@3873 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
taziden@3873 9 WEB_SITE="http://pypi.python.org/pypi/virtualenv"
taziden@3873 10 WGET_URL="http://pypi.python.org/packages/source/v/virtualenv/$TARBALL"
taziden@3873 11 DEPENDS="python python-dev"
taziden@3873 12 BUILD_DEPENDS="python python-dev"
taziden@3873 13 TAGS="python"
taziden@3873 14
taziden@3873 15 # Rules to configure and make the package.
taziden@3873 16 compile_rules()
taziden@3873 17 {
taziden@3873 18 cd $src
taziden@3873 19 python setup.py install --root=$PWD/_pkg
taziden@3873 20 }
taziden@3873 21
taziden@3873 22 # Rules to gen a SliTaz package suitable for Tazpkg.
taziden@3873 23 genpkg_rules()
taziden@3873 24 {
taziden@3873 25 cp -a $_pkg/usr $fs
taziden@3873 26 }
taziden@3873 27