2022-03-27 19:08:51 +02:00
|
|
|
# Description: Simple, fast, extensible JSON encoder/decoder for Python
|
|
|
|
# URL: https://github.com/simplejson/simplejson
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
|
|
# Depends on: python3-setuptools
|
|
|
|
|
|
|
|
name=python3-simplejson
|
2023-10-06 14:41:47 +02:00
|
|
|
version=3.19.2
|
2022-03-27 19:08:51 +02:00
|
|
|
release=1
|
|
|
|
source=(https://github.com/simplejson/simplejson/archive/v$version/$name-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd simplejson-$version
|
2023-04-07 10:15:43 +02:00
|
|
|
|
2022-03-27 19:08:51 +02:00
|
|
|
/usr/bin/python3 setup.py build
|
|
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
|
|
--root=$PKG \
|
|
|
|
-O1 \
|
|
|
|
--skip-build
|
|
|
|
}
|