mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
17 lines
403 B
Plaintext
17 lines
403 B
Plaintext
# description : A Python library for parsing and creating TOML
|
|
# homepage : https://github.com/uiri/toml
|
|
|
|
name=python3-toml
|
|
version=0.10.2
|
|
release=1
|
|
source="$name-$version.tar.gz::https://files.pythonhosted.org/packages/source/t/toml/toml-$version.tar.gz"
|
|
|
|
build() {
|
|
cd toml-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --skip-build \
|
|
--optimize=1 \
|
|
--prefix=/usr \
|
|
--root="$PKG"
|
|
}
|