mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
15 lines
393 B
Plaintext
15 lines
393 B
Plaintext
# description : Efficient binary serialization format
|
|
# homepage : https://pypi.org/project/msgpack/
|
|
# depends : python3-setuptools
|
|
|
|
name=python3-msgpack
|
|
version=1.0.5
|
|
release=1
|
|
source="$name-$version.tar.gz::https://files.pythonhosted.org/packages/source/m/msgpack/msgpack-$version.tar.gz"
|
|
|
|
build() {
|
|
cd msgpack-$version
|
|
python3 setup.py build
|
|
python3 setup.py install -O1 --root="$PKG"
|
|
}
|