wok annotate virtualenv/receipt @ rev 5889

guile: Fix build with GCC 4.5
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Jul 22 01:56:20 2010 +0200 (2010-07-22)
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