PACKAGE="python-markupsafe"
VERSION="0.12"
CATEGORY="development"
SHORT_DESC="Implements a XML/HTML/XHTML Markup safe string for Python."
MAINTAINER="pascal.bellard@slitaz.org"
SOURCE="MarkupSafe"
TARBALL="$SOURCE-$VERSION.tar.gz"
WEB_SITE="http://pypi.python.org/pypi/MarkupSafe"
WGET_URL="http://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
DEPENDS="python"
BUILD_DEPENDS="python python-dev setuptools"

# 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()
{
	mkdir -p $fs
	cp -a $_pkg/usr $fs
}