2017-10-03 11:16:24 +02:00
|
|
|
|
|
|
|
from pythonforandroid.toolchain import PythonRecipe
|
|
|
|
|
|
|
|
|
|
|
|
class PyASN1Recipe(PythonRecipe):
|
2018-05-16 01:49:47 +02:00
|
|
|
version = '0.4.2'
|
2017-10-03 11:16:24 +02:00
|
|
|
url = 'https://pypi.python.org/packages/source/p/pyasn1/pyasn1-{version}.tar.gz'
|
|
|
|
depends = ['python2']
|
2018-05-16 01:49:47 +02:00
|
|
|
|
2017-10-03 11:16:24 +02:00
|
|
|
call_hostpython_via_targetpython = False
|
|
|
|
|
|
|
|
recipe = PyASN1Recipe()
|