19 lines
494 B
Plaintext
19 lines
494 B
Plaintext
# Description: Fast, simple object-to-object and broadcast signaling
|
|
# URL: https://pythonhosted.org/blinker/
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-blinker
|
|
version=1.4
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/b/blinker/blinker-$version.tar.gz)
|
|
|
|
build() {
|
|
cd blinker-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
-O1 \
|
|
--skip-build
|
|
}
|