19 lines
486 B
Plaintext
19 lines
486 B
Plaintext
|
# Description: Style-preserving TOML library for Python
|
||
|
# URL: https://github.com/sdispater/tomlkit
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: python3-setuptools
|
||
|
|
||
|
name=python3-tomlkit
|
||
|
version=0.7.2
|
||
|
release=1
|
||
|
source=(https://files.pythonhosted.org/packages/source/t/tomlkit/tomlkit-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd tomlkit-$version
|
||
|
/usr/bin/python3 setup.py build
|
||
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
||
|
--root=$PKG \
|
||
|
-O1 \
|
||
|
--skip-build
|
||
|
}
|