# HG changeset patch # User Christophe Lincoln # Date 1254260889 -7200 # Node ID 58996059f27f9c5c92271a4a642768c4ec1c1428 # Parent fe2baa2becc1ee0392aa3839bf3c1e3b4e365cc9 Add: tinypy (Minimalist implementation of Python) diff -r fe2baa2becc1 -r 58996059f27f tinypy/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tinypy/receipt Tue Sep 29 23:48:09 2009 +0200 @@ -0,0 +1,26 @@ +# 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" + +# 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 +}