# 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
}