wok annotate virtualenv/receipt @ rev 12490

gparted: fix bdeps
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 24 11:37:50 2012 +0200 (2012-04-24)
parents a86dc82474f8
children 2a21689b0af7
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