Files
ports/main/python3-zstandard/spkgbuild
2023-11-03 08:17:30 +00:00

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
}