11 lines
337 B
Python
11 lines
337 B
Python
from pythonforandroid.recipe import CompiledComponentsPythonRecipe
|
|
|
|
|
|
class GreenletRecipe(CompiledComponentsPythonRecipe):
|
|
version = '0.4.15'
|
|
url = 'https://pypi.python.org/packages/source/g/greenlet/greenlet-{version}.tar.gz'
|
|
depends = ['setuptools']
|
|
call_hostpython_via_targetpython = False
|
|
|
|
|
|
recipe = GreenletRecipe()
|