lbry-fdroid/p4a/pythonforandroid/recipes/audiostream/__init__.py

33 lines
1.3 KiB
Python
Raw Normal View History

2017-08-13 03:24:00 +02:00
from pythonforandroid.recipe import CythonRecipe
from os.path import join
2017-08-13 03:24:00 +02:00
class AudiostreamRecipe(CythonRecipe):
version = 'master'
2017-08-13 03:24:00 +02:00
url = 'https://github.com/kivy/audiostream/archive/{version}.zip'
name = 'audiostream'
depends = [('python2', 'python3'), ('sdl', 'sdl2'), 'pyjnius']
2017-08-13 03:24:00 +02:00
def get_recipe_env(self, arch):
env = super(AudiostreamRecipe, self).get_recipe_env(arch)
2017-08-13 03:24:00 +02:00
if 'sdl' in self.ctx.recipe_build_order:
sdl_include = 'sdl'
sdl_mixer_include = 'sdl_mixer'
elif 'sdl2' in self.ctx.recipe_build_order:
sdl_include = 'SDL2'
2017-08-13 03:24:00 +02:00
sdl_mixer_include = 'SDL2_mixer'
env['USE_SDL2'] = 'True'
env['SDL2_INCLUDE_DIR'] = join(self.ctx.bootstrap.build_dir, 'jni', 'SDL', 'include')
2017-08-13 03:24:00 +02:00
env['CFLAGS'] += ' -I{jni_path}/{sdl_include}/include -I{jni_path}/{sdl_mixer_include}'.format(
jni_path=join(self.ctx.bootstrap.build_dir, 'jni'),
sdl_include=sdl_include,
sdl_mixer_include=sdl_mixer_include)
env['NDKPLATFORM'] = self.ctx.ndk_platform
env['LIBLINK'] = 'NOTNONE' # Hacky fix. Needed by audiostream setup.py
2017-08-13 03:24:00 +02:00
return env
recipe = AudiostreamRecipe()