mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
707 B
Bash
22 lines
707 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=python-reportlab
|
|
pkgver=2.3
|
|
_origver=2_3
|
|
pkgrel=1
|
|
pkgdesc="A proven industry-strength PDF generating solution"
|
|
arch=('i686' 'x86_64')
|
|
depends=('python' 'freetype2')
|
|
license=('CUSTOM')
|
|
source=(http://www.reportlab.org/ftp/ReportLab_${_origver}.tar.gz)
|
|
url="http://www.reportlab.org/rl_toolkit.html"
|
|
|
|
build() {
|
|
cd $startdir/src/ReportLab_${_origver}
|
|
python setup.py install --root=$startdir/pkg
|
|
install -D -m644 LICENSE.txt $startdir/pkg/usr/share/licenses/$pkgname/license.txt
|
|
}
|
|
|
|
md5sums=('057b846bd3b7b2c3498bf14f6a523632')
|