lbry-android/p4a/pythonforandroid/recipes/kivent_cymunk/__init__.py
Akinwale Ariwodola 744cfaebc2 Initial commit
2017-08-13 02:24:00 +01:00

32 lines
1.1 KiB
Python

from pythonforandroid.toolchain import CythonRecipe
from os.path import join
class KiventCymunkRecipe(CythonRecipe):
name = 'kivent_cymunk'
depends = ['kivent_core', 'cymunk']
subbuilddir = False
def get_recipe_env(self, arch, with_flags_in_cc=True):
env = super(KiventCymunkRecipe, self).get_recipe_env(
arch, with_flags_in_cc=with_flags_in_cc)
cymunk = self.get_recipe('cymunk', self.ctx).get_build_dir(arch.arch)
env['PYTHONPATH'] = join(cymunk, 'cymunk', 'python')
kivy = self.get_recipe('kivy', self.ctx).get_build_dir(arch.arch)
kivent = self.get_recipe('kivent_core',
self.ctx).get_build_dir(arch.arch, sub=True)
env['CYTHONPATH'] = ':'.join((kivy, cymunk, kivent))
return env
def prepare_build_dir(self, arch):
'''No need to prepare, we'll use kivent_core'''
return
def get_build_dir(self, arch):
builddir = self.get_recipe('kivent_core', self.ctx).get_build_dir(arch)
return join(builddir, 'modules', 'cymunk')
recipe = KiventCymunkRecipe()