mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
15 lines
403 B
Plaintext
Executable File
15 lines
403 B
Plaintext
Executable File
# description : Fast correct Python JSON library supporting dataclasses and datetimes
|
|
# homepage : https://github.com/ijl/orjson
|
|
# depends : maturin
|
|
|
|
name=python3-orjson
|
|
version=3.9.10
|
|
release=1
|
|
source="https://github.com/ijl/orjson/archive/$version/orjson-$version.tar.gz"
|
|
|
|
build() {
|
|
cd orjson-$version
|
|
maturin build --release --strip
|
|
python3 -m installer --destdir=$PKG target/wheels/*.whl
|
|
}
|