12 lines
297 B
Python
12 lines
297 B
Python
|
|
from pythonforandroid.toolchain import PythonRecipe
|
|
|
|
|
|
class PyASN1Recipe(PythonRecipe):
|
|
version = '0.4.2'
|
|
url = 'https://pypi.python.org/packages/source/p/pyasn1/pyasn1-{version}.tar.gz'
|
|
depends = ['python2']
|
|
|
|
call_hostpython_via_targetpython = False
|
|
|
|
recipe = PyASN1Recipe()
|