# HG changeset patch # User Julien Rabier # Date 1249868189 0 # Node ID a86dc82474f8c978628a5c5a70871b3036bbda87 # Parent ff47e01ceb4a740365d613fb7352b8ad353d7396 add: virtualenv diff -r ff47e01ceb4a -r a86dc82474f8 virtualenv/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/virtualenv/receipt Mon Aug 10 01:36:29 2009 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="virtualenv" +VERSION="1.3.3" +CATEGORY="development" +SHORT_DESC="Virtual Python Environment Builder." +MAINTAINER="taziden@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://pypi.python.org/pypi/virtualenv" +WGET_URL="http://pypi.python.org/packages/source/v/virtualenv/$TARBALL" +DEPENDS="python python-dev" +BUILD_DEPENDS="python python-dev" +TAGS="python" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +} +