mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
18 lines
471 B
Plaintext
18 lines
471 B
Plaintext
# description : Python 3+ compatible port of the configobj library
|
|
# homepage : https://github.com/DiffSK/configobj
|
|
# depends : python3-setuptools python3-six
|
|
|
|
name=python3-configobj
|
|
version=5.0.8
|
|
release=1
|
|
source="https://github.com/DiffSK/configobj/archive/v$version/configobj-$version.tar.gz"
|
|
|
|
build() {
|
|
cd configobj-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install \
|
|
--optimize=1 \
|
|
--root=$PKG \
|
|
--skip-build
|
|
}
|