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
)
95 lines
3 KiB
Python
95 lines
3 KiB
Python
from __future__ import unicode_literals
|
|
from pythonforandroid.recipe import CythonRecipe, IncludedFilesBehaviour
|
|
from pythonforandroid.util import current_directory
|
|
from pythonforandroid.patching import will_build
|
|
from pythonforandroid import logger
|
|
|
|
from os.path import join
|
|
|
|
|
|
class AndroidRecipe(IncludedFilesBehaviour, CythonRecipe):
|
|
# name = 'android'
|
|
version = None
|
|
url = None
|
|
|
|
src_filename = 'src'
|
|
|
|
depends = [('pygame', 'sdl2', 'genericndkbuild'),
|
|
'pyjnius']
|
|
|
|
config_env = {}
|
|
|
|
def get_recipe_env(self, arch):
|
|
env = super(AndroidRecipe, self).get_recipe_env(arch)
|
|
env.update(self.config_env)
|
|
return env
|
|
|
|
def prebuild_arch(self, arch):
|
|
super(AndroidRecipe, self).prebuild_arch(arch)
|
|
ctx_bootstrap = self.ctx.bootstrap.name
|
|
|
|
# define macros for Cython, C, Python
|
|
tpxi = 'DEF {} = {}\n'
|
|
th = '#define {} {}\n'
|
|
tpy = '{} = {}\n'
|
|
|
|
# make sure bootstrap name is in unicode
|
|
if isinstance(ctx_bootstrap, bytes):
|
|
ctx_bootstrap = ctx_bootstrap.decode('utf-8')
|
|
bootstrap = bootstrap_name = ctx_bootstrap
|
|
|
|
is_sdl2 = bootstrap_name in ('sdl2', 'sdl2python3', 'sdl2_gradle')
|
|
is_pygame = bootstrap_name in ('pygame',)
|
|
is_webview = bootstrap_name in ('webview',)
|
|
|
|
if is_sdl2 or is_webview:
|
|
if is_sdl2:
|
|
bootstrap = 'sdl2'
|
|
java_ns = u'org.kivy.android'
|
|
jni_ns = u'org/kivy/android'
|
|
elif is_pygame:
|
|
java_ns = u'org.renpy.android'
|
|
jni_ns = u'org/renpy/android'
|
|
else:
|
|
logger.error((
|
|
'unsupported bootstrap for android recipe: {}'
|
|
''.format(bootstrap_name)
|
|
))
|
|
exit(1)
|
|
|
|
config = {
|
|
'BOOTSTRAP': bootstrap,
|
|
'IS_SDL2': int(is_sdl2),
|
|
'IS_PYGAME': int(is_pygame),
|
|
'PY2': int(will_build('python2')(self)),
|
|
'JAVA_NAMESPACE': java_ns,
|
|
'JNI_NAMESPACE': jni_ns,
|
|
}
|
|
|
|
# create config files for Cython, C and Python
|
|
with (
|
|
current_directory(self.get_build_dir(arch.arch))), (
|
|
open(join('android', 'config.pxi'), 'w')) as fpxi, (
|
|
open(join('android', 'config.h'), 'w')) as fh, (
|
|
open(join('android', 'config.py'), 'w')) as fpy:
|
|
|
|
for key, value in config.items():
|
|
fpxi.write(tpxi.format(key, repr(value)))
|
|
fpy.write(tpy.format(key, repr(value)))
|
|
|
|
fh.write(th.format(
|
|
key,
|
|
value if isinstance(value, int) else '"{}"'.format(value)
|
|
))
|
|
self.config_env[key] = str(value)
|
|
|
|
if is_sdl2:
|
|
fh.write('JNIEnv *SDL_AndroidGetJNIEnv(void);\n')
|
|
fh.write(
|
|
'#define SDL_ANDROID_GetJNIEnv SDL_AndroidGetJNIEnv\n'
|
|
)
|
|
elif is_pygame:
|
|
fh.write('JNIEnv *SDL_ANDROID_GetJNIEnv(void);\n')
|
|
|
|
|
|
recipe = AndroidRecipe()
|