# HG changeset patch # User Christopher Rogers # Date 1323548924 0 # Node ID aba18d5b7fbe25fe4f1cfe76f1d1bc519df0f39b # Parent 312b318bb206e26a3d9b9cc38b11d8ef8d479e8e Add python-distribute. This is going to be used to replace setuptools. Don't add a provide. diff -r 312b318bb206 -r aba18d5b7fbe python-distribute/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-distribute/receipt Sat Dec 10 20:28:44 2011 +0000 @@ -0,0 +1,27 @@ +# SliTaz package receipt. + +PACKAGE="python-distribute" +VERSION="0.6.24" +CATEGORY="development" +SHORT_DESC="Easily build and distribute Python packages" +MAINTAINER="slaxemulator@gmail.com" +WEB_SITE="http://pypi.python.org/pypi/distribute" +SOURCE="distribute" +TARBALL="$SOURCE-$VERSION.tar.gz" +WGET_URL="http://pypi.python.org/packages/source/d/distribute/$TARBALL" + +DEPENDS="python" +BUILD_DEPENDS="python-dev" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + python setup.py install --prefix=/usr --root=$DESTDIR +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs +}