mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 20:42:25 +01:00
Initial PKGBUILD status as of 28.11.2014
This commit is contained in:
commit
352c604b0d
2 changed files with 40 additions and 0 deletions
15
.SRCINFO
Normal file
15
.SRCINFO
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
pkgbase = zfo-editor
|
||||
pkgdesc = ZFO editor allows user to interact with ZFO forms
|
||||
pkgver = 0.3.2
|
||||
pkgrel = 1
|
||||
url = http://labs.nic.cz/page/768/zfo-editor/
|
||||
arch = any
|
||||
license = GPL2
|
||||
makedepends = python2-distribute
|
||||
depends = python-lxml
|
||||
depends = pywebkitgtk
|
||||
source = http://labs.nic.cz/files/labs/zfo_editor/zfo-editor-0.3.2.tar.gz
|
||||
sha256sums = 36dda2e12f790c4a84ee81844ab226e8accbe8868ddbeabe0753112656b0a2c5
|
||||
|
||||
pkgname = zfo-editor
|
||||
|
||||
25
PKGBUILD
Normal file
25
PKGBUILD
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
||||
|
||||
pkgname=zfo-editor
|
||||
pkgver=0.3.2
|
||||
pkgrel=1
|
||||
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')
|
||||
makedepends=('python2-distribute')
|
||||
source=(http://labs.nic.cz/files/labs/zfo_editor/$pkgname-$pkgver.tar.gz)
|
||||
sha256sums=('36dda2e12f790c4a84ee81844ab226e8accbe8868ddbeabe0753112656b0a2c5')
|
||||
|
||||
build() {
|
||||
cd ${srcdir}/$pkgname-$pkgver
|
||||
|
||||
#Python2 fix
|
||||
for file in $(find . -name '*.py' -print); do
|
||||
sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
|
||||
sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
|
||||
done
|
||||
|
||||
python2 setup.py install --root=${pkgdir}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue