20 lines
554 B
Plaintext
20 lines
554 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.5.0
|
|
release=1
|
|
source=(https://github.com/click-contrib/click-threading/archive/$version/click-threading-$version.tar.gz)
|
|
|
|
build() {
|
|
cd click-threading-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install \
|
|
--prefix=/usr \
|
|
--optimize=1 \
|
|
--skip-build \
|
|
--root=$PKG
|
|
}
|