blob: d83224964e2521a48072480b2aa59d80f45cc222 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Contributor (Arch): Florian Walch <florian.walch@gmx.at>
# Maintainer (Arch): Robin Baumgartner <robin@baumgartners.ch>
# Maintainer: André Silva <emulatorman@parabola.nu>
pkgname=python2-relatorio
pkgver=0.6.0
pkgrel=2
pkgdesc="A templating library able to output odt and pdf files"
arch=('i686' 'x86_64' 'mips64el')
url="http://relatorio.openhex.org"
license=('GPL')
depends=('python2-genshi>=0.7' 'python2-lxml>=3.3.5')
makedepends=('python2-distribute')
source=("http://pypi.python.org/packages/source/r/relatorio/relatorio-$pkgver.tar.gz")
md5sums=('170eeb4102a92b9ddc554799a1503cee')
build() {
cd $srcdir/relatorio-$pkgver
python2 setup.py build
}
package() {
cd $srcdir/relatorio-$pkgver
python2 setup.py install --root=$pkgdir
}
|