mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-06 01:16:26 +00:00
15 lines
403 B
Plaintext
15 lines
403 B
Plaintext
# description : Python bindings for YAML, using fast libYAML library
|
|
# depends : python3 yaml
|
|
|
|
name=python3-yaml
|
|
version=3.12
|
|
release=1
|
|
source=(http://pyyaml.org/download/pyyaml/PyYAML-$version.tar.gz)
|
|
md5sum=(4c129761b661d181ebf7ff4eb2d79950)
|
|
|
|
build() {
|
|
cd PyYAML-$version
|
|
python3 setup.py --with-libyaml build
|
|
python3 setup.py --with-libyaml install --prefix=/usr --root="$PKG" -O1 --skip-build
|
|
}
|