# HG changeset patch # User Pierre-Jean Fichet # Date 1231092615 -3600 # Node ID 21b09da573ef17b155404328506f89ef606d6146 # Parent 2d5bce3c5a01992307695ef7972258589566f61c Add: pysqlite diff -r 2d5bce3c5a01 -r 21b09da573ef pysqlite/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pysqlite/receipt Sun Jan 04 19:10:15 2009 +0100 @@ -0,0 +1,30 @@ +# SliTaz package receipt. + +PACKAGE="pysqlite" +VERSION="2.5.1" +CATEGORY="development" +SHORT_DESC="Python interface for the SQLite database" +MAINTAINER="sygne@ombres.eu" +DEPENDS="sqlite python" +BUILD_DEPENDS="sqlite-dev python-dev" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://pysqlite.org/" +WGET_URL="http://oss.itsystementwicklung.de/download/pysqlite/2.5/$VERSION/$TARBALL" + +# 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/usr + cp -a $_pkg/usr/lib $fs/usr + +} +