19 lines
476 B
Plaintext
19 lines
476 B
Plaintext
|
# Description: Iterative JSON parser with Pythonic interface
|
||
|
# URL: https://github.com/ICRAR/ijson
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: python3-setuptools yajl
|
||
|
|
||
|
name=python3-ijson
|
||
|
version=3.1.4
|
||
|
release=1
|
||
|
source=(https://github.com/ICRAR/ijson/archive/v$version/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd ijson-$version
|
||
|
/usr/bin/python3 setup.py build
|
||
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
||
|
--root=$PKG \
|
||
|
-O1 \
|
||
|
--skip-build
|
||
|
}
|