21 lines
599 B
Plaintext
21 lines
599 B
Plaintext
|
# Description: clikit allows you to create beautiful and testable command-line interfaces
|
||
|
# URL: https://github.com/sdispater/clikit
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: python3-pastel python3-pylev
|
||
|
#python3-crashtest
|
||
|
|
||
|
name=python3-clikit
|
||
|
version=0.6.2
|
||
|
release=1
|
||
|
source=(https://github.com/sdispater/clikit/archive/$version/$name-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd clikit-$version
|
||
|
dephell deps convert --from pyproject.toml --to setup.py
|
||
|
/usr/bin/python3 setup.py build
|
||
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
||
|
--root=$PKG \
|
||
|
--skip-build \
|
||
|
-O1
|
||
|
}
|