forked from ports/contrib
17 lines
547 B
Plaintext
17 lines
547 B
Plaintext
# Description: Cleo allows you to create beautiful and testable command-line interfaces
|
|
# URL: https://github.com/python-poetry/cleo
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-clikit python3-rapidfuzz
|
|
|
|
name=python3-cleo
|
|
version=2.1.0
|
|
release=1
|
|
source=(https://github.com/python-poetry/cleo/archive/$version/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd cleo-$version
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
/usr/bin/python3 -m installer --compile-bytecode 0 --destdir=$PKG dist/*.whl
|
|
}
|