8b2694efb7
* fix build for openssl 1.1.1b required for sdk (cherry picked from commitaa49e3b275
) * use js code from master * fix openssl recipe and tweak build (cherry picked from commit6e94c27021
) * remove unused build recipes (cherry picked from commitf5c0577bdb
)
17 lines
405 B
Python
17 lines
405 B
Python
from pythonforandroid.python import HostPythonRecipe
|
|
|
|
|
|
class Hostpython3Recipe(HostPythonRecipe):
|
|
'''
|
|
The hostpython3's recipe.
|
|
|
|
.. versionchanged:: 0.6.0
|
|
Refactored into the new class
|
|
:class:`~pythonforandroid.python.HostPythonRecipe`
|
|
'''
|
|
version = '3.7.1'
|
|
name = 'hostpython3'
|
|
conflicts = ['hostpython2', 'hostpython3crystax']
|
|
|
|
|
|
recipe = Hostpython3Recipe()
|