lbry-android-sdk/p4a/pythonforandroid/recipes/genericndkbuild/__init__.py

34 lines
888 B
Python
Raw Permalink Normal View History

2022-12-02 21:15:34 +01:00
from os.path import join
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
2022-12-02 21:15:34 +01:00
depends = ['python3']
conflicts = ['sdl2']
2017-08-13 03:24:00 +02:00
def should_build(self, arch):
return True
def get_recipe_env(self, arch=None, with_flags_in_cc=True, with_python=True):
2022-12-02 21:15:34 +01:00
env = super().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()):
2022-12-02 21:15:34 +01:00
shprint(sh.Command(join(self.ctx.ndk_dir, "ndk-build")), "V=1", _env=env)
2017-08-13 03:24:00 +02:00
recipe = GenericNDKBuildRecipe()