# SliTaz package receipt.

PACKAGE="tinypy"
VERSION="1.1"
CATEGORY="development"
SHORT_DESC="A minimalist implementation of Python."
MAINTAINER="pankso@slitaz.org"
TARBALL="$PACKAGE-$VERSION.tar.gz"
DEPENDS="glibc-base"
BUILD_DEPENDS="python-dev"
WEB_SITE="http://www.tinypy.org/"
WGET_URL="http://tinypy.googlecode.com/files/$TARBALL"
TAGS="python"

# Rules to configure and make the package.
compile_rules()
{
	cd $src
	python setup.py linux
}

# Rules to gen a SliTaz package suitable for Tazpkg.
genpkg_rules()
{
	mkdir -p $fs/usr/bin
	cp -a $src/build/tinypy $fs/usr/bin
}