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