wok annotate virtualenv/receipt @ rev 6081

Add: Thunderbird langpacks (de en_GB es fr pt_BR pt_PT ru)
author Dominique Corbex <domcox@slitaz.org>
date Sun Aug 29 11:07:11 2010 +0200 (2010-08-29)
parents
children d69f89800f8d
rev   line source
taziden@3873 1 # SliTaz package receipt.
taziden@3873 2
taziden@3873 3 PACKAGE="virtualenv"
taziden@3873 4 VERSION="1.3.3"
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