2019-03-30 21:58:45 +01:00
|
|
|
from pythonforandroid.recipe import BootstrapNDKRecipe
|
|
|
|
from pythonforandroid.toolchain import current_directory, shprint
|
2017-08-13 03:24:00 +02:00
|
|
|
import sh
|
|
|
|
|
|
|
|
|
|
|
|
class GenericNDKBuildRecipe(BootstrapNDKRecipe):
|
|
|
|
version = None
|
|
|
|
url = None
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
depends = [('python2', 'python3', 'python3crystax')]
|
2017-08-13 03:24:00 +02:00
|
|
|
conflicts = ['sdl2', 'pygame', 'sdl']
|
|
|
|
|
|
|
|
def should_build(self, arch):
|
|
|
|
return True
|
|
|
|
|
2019-03-30 21:58:45 +01:00
|
|
|
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'
|
2017-08-13 03:24:00 +02:00
|
|
|
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()
|