# SliTaz package receipt.

PACKAGE="python-cherrypy"
VERSION="3.1.2" # Fix to this version for turbogears.
CATEGORY="development"
SHORT_DESC="CherryPy is a pythonic, object-oriented HTTP framework."
MAINTAINER="pankso@slitaz.org"
SOURCE="CherryPy"
TARBALL="$SOURCE-$VERSION.tar.gz"
WEB_SITE="http://www.cherrypy.org/"
WGET_URL="http://download.cherrypy.org/cherrypy/$VERSION/$TARBALL"
DEPENDS="python"
BUILD_DEPENDS="python python-dev"
TAGS="python"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	python setup.py install --root=$PWD/_pkg
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	cp -a $_pkg/usr $fs
}