blob: 980c1414f2c7f3b77c7a2bbe79ef85388ebaa466 (
plain)
1 # Description: A Python library for parsing and creating TOML
2 # URL: https://github.com/uiri/toml
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-setuptools
5
6 name=python3-toml
7 version=0.10.1
8 release=1
9 source=(https://github.com/uiri/toml/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd toml-$version
13 python3 setup.py build
14 python3 setup.py install --skip-build \
15 --optimize=1 \
16 --prefix=/usr \
17 --root=$PKG
18 }
|