19 lines
486 B
Plaintext
19 lines
486 B
Plaintext
# Description: Python 3+ compatible port of the configobj library
|
|
# URL: https://github.com/DiffSK/configobj
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: 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
|
|
}
|