2019-11-02 23:09:01 +01:00
|
|
|
# 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
|
2020-04-29 14:11:50 +00:00
|
|
|
version=7.1.2
|
2019-11-02 23:09:01 +01:00
|
|
|
release=1
|
|
|
|
source=(https://github.com/pallets/click/archive/$version/click-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd click-$version
|
|
|
|
python3 setup.py build
|
|
|
|
python3 setup.py install \
|
|
|
|
--skip-build \
|
|
|
|
--root=$PKG \
|
|
|
|
--optimize=1
|
|
|
|
}
|