diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/python-reportlab/PKGBUILD | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/python-reportlab/PKGBUILD')
-rw-r--r-- | community/python-reportlab/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/python-reportlab/PKGBUILD b/community/python-reportlab/PKGBUILD new file mode 100644 index 000000000..6e44f03d6 --- /dev/null +++ b/community/python-reportlab/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 78251 2012-10-17 10:27:06Z allan $ +# Maintainer: +# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: William Rea <sillywilly@gmail.com> + +pkgbase=python-reportlab +pkgname=python2-reportlab +_origname=reportlab +pkgver=2.6 +pkgrel=1 +pkgdesc="A proven industry-strength PDF generating solution" +arch=('i686' 'x86_64') +url="http://www.reportlab.org/rl_toolkit.html" +depends=('python2' 'freetype2') +conflicts=('python-reportlab<=2.5-2') +replaces=('python-reportlab<=2.5-2') +license=('CUSTOM') +source=(http://www.reportlab.org/ftp/${_origname}-$pkgver.tar.gz) +md5sums=('e5d27a24a2c8456b168913242aa1940f') + +build() { + cd $srcdir/${_origname}-$pkgver + + # python2 fix + for file in src/reportlab/graphics/widgets/table.py src/reportlab/lib/normalDate.py \ + src/reportlab/pdfgen/pycanvas.py; do + sed -i 's_#!.*/usr/bin/env python_#!/usr/bin/env python2_' $file + done +} + +package_python2-reportlab() { + cd $srcdir/${_origname}-$pkgver + python2 setup.py install --root=$pkgdir --optimize=1 + install -D -m644 LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/license.txt +} |