20 lines
536 B
Plaintext
20 lines
536 B
Plaintext
|
# Description: Multithreaded Click apps made easy
|
||
|
# URL: https://github.com/click-contrib/click-threading
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: python3-click python3-setuptools
|
||
|
|
||
|
name=python3-click-threading
|
||
|
version=0.4.4
|
||
|
release=1
|
||
|
source=(https://github.com/click-contrib/click-threading/archive/$version/click-threading-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd click-threading-$version
|
||
|
python3 setup.py build
|
||
|
python3 setup.py install \
|
||
|
--prefix=/usr \
|
||
|
--optimize=1 \
|
||
|
--skip-build \
|
||
|
--root=$PKG
|
||
|
}
|