# Maintainer: Jakub Klinkovský # Contributor (Parabola): André Silva pkgname=python2-relatorio pkgver=183 pkgrel=1 pkgdesc="Relatorio is an OpenHex and B2CK project to easily create reports in a variety of formats (openoffice text, PDF, XHTML) from python objects." arch=('any') url="http://relatorio.openhex.org" license=('GPL') depends=('python2-genshi' 'python2-lxml' 'python2-yaml' 'python2-pycha') makedepends=('mercurial' 'python2-distribute') _hgroot="http://hg.openhex.org/hgwebdir.cgi/relatorio" _hgrepo="relatorio" build() { cd "$srcdir" msg "Connecting to Mercurial server...." if [[ -d "$_hgrepo" ]]; then cd "$_hgrepo" hg pull -u msg "The local files are updated." else hg clone "$_hgroot" "$_hgrepo" fi msg "Mercurial checkout done or server timeout" } package() { cd "$srcdir/$_hgrepo" msg "Starting build..." python2 setup.py install --root=$pkgdir }