mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-07 01:40:35 +00:00
15 lines
437 B
Plaintext
Executable File
15 lines
437 B
Plaintext
Executable File
# description : Python bindings to the Zstandard (zstd) compression library
|
|
# homepage : https://github.com/indygreg/python-zstandard
|
|
# depends : python3-setuptools
|
|
|
|
name=python3-zstandard
|
|
version=0.22.0
|
|
release=1
|
|
source="$name-$version.tar.gz::https://github.com/indygreg/python-zstandard/archive/$version.tar.gz"
|
|
|
|
build() {
|
|
cd python-zstandard-$version
|
|
python3 setup.py build_ext
|
|
python3 setup.py install --root=$PKG --optimize=1
|
|
}
|