zfo-editor-0.3.2-2

This commit is contained in:
Jaroslav Lichtblau 2014-12-02 16:17:57 +01:00
parent 352c604b0d
commit 18513856fe
2 changed files with 7 additions and 7 deletions

View file

@ -1,12 +1,12 @@
pkgbase = zfo-editor
pkgdesc = ZFO editor allows user to interact with ZFO forms
pkgver = 0.3.2
pkgrel = 1
pkgrel = 2
url = http://labs.nic.cz/page/768/zfo-editor/
arch = any
license = GPL2
makedepends = python2-distribute
depends = python-lxml
depends = python2-lxml
depends = pywebkitgtk
source = http://labs.nic.cz/files/labs/zfo_editor/zfo-editor-0.3.2.tar.gz
sha256sums = 36dda2e12f790c4a84ee81844ab226e8accbe8868ddbeabe0753112656b0a2c5

View file

@ -2,18 +2,18 @@
pkgname=zfo-editor
pkgver=0.3.2
pkgrel=1
pkgrel=2
pkgdesc="ZFO editor allows user to interact with ZFO forms"
arch=('any')
url="http://labs.nic.cz/page/768/zfo-editor/"
license=('GPL2')
depends=('python-lxml' 'pywebkitgtk')
depends=('python2-lxml' 'pywebkitgtk')
makedepends=('python2-distribute')
source=(http://labs.nic.cz/files/labs/zfo_editor/$pkgname-$pkgver.tar.gz)
sha256sums=('36dda2e12f790c4a84ee81844ab226e8accbe8868ddbeabe0753112656b0a2c5')
build() {
cd ${srcdir}/$pkgname-$pkgver
package() {
cd "${srcdir}"/$pkgname-$pkgver
#Python2 fix
for file in $(find . -name '*.py' -print); do
@ -21,5 +21,5 @@ build() {
sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
done
python2 setup.py install --root=${pkgdir}
python2 setup.py install --root="${pkgdir}"
}