mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
15 lines
407 B
Plaintext
15 lines
407 B
Plaintext
# description : Lightweight in-process concurrent programming
|
|
# homepage : https://pypi.org/project/greenlet/
|
|
# depends : python3-setuptools
|
|
|
|
name=python3-greenlet
|
|
version=3.0.3
|
|
release=1
|
|
source="$name-$version.tar.gz::https://files.pythonhosted.org/packages/source/g/greenlet/greenlet-$version.tar.gz"
|
|
|
|
build() {
|
|
cd greenlet-$version
|
|
python3 setup.py build
|
|
python3 setup.py install -O1 --root="$PKG"
|
|
}
|