17 lines
518 B
Plaintext
17 lines
518 B
Plaintext
# Description: Python API for cross-platform colored terminal text.
|
|
# URL: https://pypi.python.org/pypi/colorama
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-hatchling
|
|
|
|
name=python3-colorama
|
|
version=0.4.6
|
|
release=1
|
|
source=(https://github.com/tartley/colorama/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd colorama-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
}
|