17 lines
510 B
Plaintext
17 lines
510 B
Plaintext
# Description: A lil' TOML writer
|
|
# URL: https://github.com/hukkin/tomli-w
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-build python3-flit-core python3-installer
|
|
|
|
name=python3-tomli-w
|
|
version=1.0.0
|
|
release=1
|
|
source=(https://github.com/hukkin/tomli-w/archive/$version/tomli-w-$version.tar.gz)
|
|
|
|
build() {
|
|
cd tomli-w-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 0 --destdir=$PKG dist/*.whl
|
|
}
|