summaryrefslogtreecommitdiff
path: root/pcr/python2-relatorio
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-04-17 10:51:41 -0300
committerAndré Fabian Silva Delgado <emulatorman@lavabit.com>2013-04-17 10:51:41 -0300
commit7c79db1e5f5d6e83387530dc8bad3963aa23fd26 (patch)
tree3c6b0a2218daf7237bd63ff4705ae833a4570fb9 /pcr/python2-relatorio
parent710a19e9bf8a3d6b34aa02c8ed5afed39e58f283 (diff)
python2-relatorio: fixing issues on PKGBUILD
Diffstat (limited to 'pcr/python2-relatorio')
-rw-r--r--pcr/python2-relatorio/PKGBUILD17
1 files changed, 17 insertions, 0 deletions
diff --git a/pcr/python2-relatorio/PKGBUILD b/pcr/python2-relatorio/PKGBUILD
index 30c24d3e0..bbfdb15f4 100644
--- a/pcr/python2-relatorio/PKGBUILD
+++ b/pcr/python2-relatorio/PKGBUILD
@@ -1,4 +1,5 @@
# Maintainer: Jakub Klinkovský <kuba.klinkovsky@gmail.com>
+# Contributor (Parabola): André Silva <emulatorman@lavabit.com>
pkgname=python2-relatorio
pkgver=183
pkgrel=1
@@ -13,6 +14,22 @@ _hgroot="http://hg.openhex.org/"
_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
}