2022-02-12 16:47:24 +01:00
|
|
|
# Description: A lil' TOML writer
|
|
|
|
# URL: https://github.com/hukkin/tomli-w
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2023-04-02 17:29:17 +02:00
|
|
|
# Depends on: python3-build python3-flit-core python3-installer
|
2022-02-12 16:47:24 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2023-04-02 17:29:17 +02:00
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
|
|
/usr/bin/python3 -m installer --compile-bytecode 0 --destdir=$PKG dist/*.whl
|
2022-02-12 16:47:24 +01:00
|
|
|
}
|