wok-4.x rev 1231
Add reportlab
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Aug 11 06:42:53 2008 +0000 (2008-08-11) |
parents | 95fe34e2fc7f |
children | d5647924b49c |
files | psycopg2/receipt reportlab/receipt |
line diff
1.1 --- a/psycopg2/receipt Mon Aug 11 06:09:44 2008 +0000 1.2 +++ b/psycopg2/receipt Mon Aug 11 06:42:53 2008 +0000 1.3 @@ -8,6 +8,8 @@ 1.4 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.5 WEB_SITE="http://initd.org/" 1.6 WGET_URL="${WEB_SITE}pub/software/$PACKAGE/$TARBALL" 1.7 +DEPENDS="python" 1.8 +BUILD_DEPENDS="python" 1.9 1.10 # Rules to configure and make the package. 1.11 compile_rules()
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/reportlab/receipt Mon Aug 11 06:42:53 2008 +0000 2.3 @@ -0,0 +1,33 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="reportlab" 2.7 +VERSION="2_1" 2.8 +CATEGORY="development" 2.9 +SHORT_DESC="PDF generation solution." 2.10 +MAINTAINER="pascal.bellard@slitaz.org" 2.11 +SOURCE="ReportLab" 2.12 +TARBALL="${SOURCE}_$VERSION.tgz" 2.13 +WEB_SITE="http://www.reportlab.org/" 2.14 +WGET_URL="${WEB_SITE}ftp/$TARBALL" 2.15 +DEPENDS="python" 2.16 +BUILD_DEPENDS="python" 2.17 + 2.18 +# Rules to configure and make the package. 2.19 +compile_rules() 2.20 +{ 2.21 + ln -s ${PACKAGE}_$VERSION/$PACKAGE $src 2.22 + cd $src 2.23 + python setup.py build 2.24 + python setup.py install --root=$PWD/_pkg 2.25 +} 2.26 + 2.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.28 +genpkg_rules() 2.29 +{ 2.30 + cp -a $_pkg/usr $fs 2.31 +} 2.32 + 2.33 +clean_wok() 2.34 +{ 2.35 + rm -rf ${PACKAGE}_$VERSION 2.36 +}