blob: 752aec7a7915bf3bdedd372041b439c1019e53f4 (
plain)
1 # Description: Yet Another Terminal Spinner
2 # URL: https://github.com/pavdmyt/yaspin
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-poetry-core python3-termcolor
5
6 name=python3-yaspin
7 version=2.3.0
8 release=1
9 source=(https://github.com/pavdmyt/yaspin/archive/v$version/$name-$version.tar.gz
10 setup.py)
11
12 build() {
13 cd yaspin-$version
14
15 /usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
16 /usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
17 }
|