# HG changeset patch
# User Claudinei Pereira <claudinei@slitaz.org>
# Date 1249514724 0
# Node ID 7a3395dc2e96c3ee1ff061d1981741e252081b51
# Parent  14c0917ed14bba8e931c170d8115223b865702c5
Add: python-httplib2 (0.5.0)

diff -r 14c0917ed14b -r 7a3395dc2e96 python-httplib2/receipt
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/python-httplib2/receipt	Wed Aug 05 23:25:24 2009 +0000
@@ -0,0 +1,31 @@
+# SliTaz package receipt.
+
+PACKAGE="python-httplib2"
+SOURCE="httplib2"
+VERSION="0.5.0"
+CATEGORY="development"
+SHORT_DESC="A comprehensive HTTP client library for python"
+MAINTAINER="claudinei@slitaz.org"
+DEPENDS="python"
+BUILD_DEPENDS="python python-dev"
+TARBALL="$SOURCE-$VERSION.tar.gz"
+WEB_SITE="http://code.google.com/p/httplib2"
+WGET_URL="http://$SOURCE.googlecode.com/files/$TARBALL"
+
+# 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()
+{
+	for file in `find $_pkg | grep 'pyc$'`; do
+		rm $file
+	done
+	mkdir -p $fs/usr
+	cp -a $_pkg/usr $fs
+}
+