diff options
author | LukenShiro <lukenshiro@ngi.it> | 2015-11-07 10:29:12 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-11-07 10:29:12 +0700 |
commit | 76556b3f39dc374df9ab63caf3c2c5f099fa4487 (patch) | |
tree | c3093b49fd8d85dc0bfed014bb86aae7a6230a9a /libraries/reportlab/reportlab.SlackBuild | |
parent | 4fc2797e471453fdcb10976ba55e7ddf93bc0cd2 (diff) | |
download | slackbuilds-76556b3f39dc374df9ab63caf3c2c5f099fa4487.tar.gz |
libraries/reportlab: Updated for version 3.2.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/reportlab/reportlab.SlackBuild')
-rw-r--r-- | libraries/reportlab/reportlab.SlackBuild | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/libraries/reportlab/reportlab.SlackBuild b/libraries/reportlab/reportlab.SlackBuild index 18e200b5ea..8382e740b4 100644 --- a/libraries/reportlab/reportlab.SlackBuild +++ b/libraries/reportlab/reportlab.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for reportlab -# Copyright 2007-2014 LukenShiro, Italy +# Copyright 2007-2015 LukenShiro, Italy # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -25,7 +25,7 @@ # Modified by SlackBuilds.org PRGNAM=reportlab -VERSION=${VERSION:-3.1.8} +VERSION=${VERSION:-3.2.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -55,7 +55,7 @@ fi # directory for python packages PYTHONDIR=$(python -c "import sys, os; print os.path.join('/usr/lib${LIBDIRSUFFIX}', 'python%s' % sys.version[:3], 'site-packages')") -DOCFILES="CHANGES.txt LICENSE.txt README.txt INSTALL.txt docs/*.pdf" +DOCFILES="CHANGES.md LICENSE.txt README.txt INSTALL.txt docs/*.pdf" OTHERPYFILES="demos tools tests" set -e @@ -73,6 +73,11 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +# Unzip T1 font curves +cd src/reportlab/fonts/ +unzip $CWD/pfbfer-20070710.zip +cd - + # Generate pdf documentation ( cd docs # workaround due to dependency loop if reportlab isn't previously installed |