# HG changeset patch # User Pascal Bellard # Date 1218436973 0 # Node ID 3cc1d65e6423a953cb807fc994582aed2bd386ee # Parent 95fe34e2fc7f7e9fcb2e36853dc674066946c438 Add reportlab diff -r 95fe34e2fc7f -r 3cc1d65e6423 psycopg2/receipt --- a/psycopg2/receipt Mon Aug 11 06:09:44 2008 +0000 +++ b/psycopg2/receipt Mon Aug 11 06:42:53 2008 +0000 @@ -8,6 +8,8 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://initd.org/" WGET_URL="${WEB_SITE}pub/software/$PACKAGE/$TARBALL" +DEPENDS="python" +BUILD_DEPENDS="python" # Rules to configure and make the package. compile_rules() diff -r 95fe34e2fc7f -r 3cc1d65e6423 reportlab/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/reportlab/receipt Mon Aug 11 06:42:53 2008 +0000 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="reportlab" +VERSION="2_1" +CATEGORY="development" +SHORT_DESC="PDF generation solution." +MAINTAINER="pascal.bellard@slitaz.org" +SOURCE="ReportLab" +TARBALL="${SOURCE}_$VERSION.tgz" +WEB_SITE="http://www.reportlab.org/" +WGET_URL="${WEB_SITE}ftp/$TARBALL" +DEPENDS="python" +BUILD_DEPENDS="python" + +# Rules to configure and make the package. +compile_rules() +{ + ln -s ${PACKAGE}_$VERSION/$PACKAGE $src + cd $src + python setup.py build + python setup.py install --root=$PWD/_pkg +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $_pkg/usr $fs +} + +clean_wok() +{ + rm -rf ${PACKAGE}_$VERSION +}