19 lines
483 B
Plaintext
19 lines
483 B
Plaintext
# Description: A simple wrapper around optparse for powerful command line utilities
|
|
# URL: http://click.pocoo.org/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-click
|
|
version=8.1.7
|
|
release=1
|
|
source=(https://github.com/pallets/click/archive/$version/click-$version.tar.gz)
|
|
|
|
build() {
|
|
cd click-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install \
|
|
--skip-build \
|
|
--root=$PKG \
|
|
--optimize=1
|
|
}
|