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
)
29 lines
880 B
Python
29 lines
880 B
Python
from pythonforandroid.recipe import BootstrapNDKRecipe
|
|
from pythonforandroid.toolchain import current_directory, shprint
|
|
import sh
|
|
|
|
|
|
class GenericNDKBuildRecipe(BootstrapNDKRecipe):
|
|
version = None
|
|
url = None
|
|
|
|
depends = [('python2', 'python3', 'python3crystax')]
|
|
conflicts = ['sdl2', 'pygame', 'sdl']
|
|
|
|
def should_build(self, arch):
|
|
return True
|
|
|
|
def get_recipe_env(self, arch=None, with_flags_in_cc=True, with_python=True):
|
|
env = super(GenericNDKBuildRecipe, self).get_recipe_env(
|
|
arch=arch, with_flags_in_cc=with_flags_in_cc, with_python=with_python)
|
|
env['APP_ALLOW_MISSING_DEPS'] = 'true'
|
|
return env
|
|
|
|
def build_arch(self, arch):
|
|
env = self.get_recipe_env(arch)
|
|
|
|
with current_directory(self.get_jni_dir()):
|
|
shprint(sh.ndk_build, "V=1", _env=env)
|
|
|
|
|
|
recipe = GenericNDKBuildRecipe()
|