# HG changeset patch # User Pascal Bellard # Date 1220180449 0 # Node ID acc17429dc0c9599660ac0adc9932409152e1c03 # Parent 3f07ffb50fa1464b75fd45e076098ed9b7908b5d Add setuptools diff -r 3f07ffb50fa1 -r acc17429dc0c setuptools/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setuptools/receipt Sun Aug 31 11:00:49 2008 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="setuptools" +VERSION="0.6c8" +CATEGORY="misc" +SHORT_DESC="Python package installation tool." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://pypi.python.org/pypi/setuptools" +WGET_URL="http://pypi.python.org/packages/source/s/setuptools/$TARBALL" +DEPENDS="python" +BUILD_DEPENDS="python" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py build + python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +} +