kivy-ios/recipes/kivy/__init__.py

55 lines
1.9 KiB
Python
Raw Normal View History

from toolchain import CythonRecipe, shprint
2015-02-25 18:51:03 +01:00
from os.path import join
from os import chdir, listdir, getcwd
import sh
import logging
import shutil
logger = logging.getLogger(__name__)
2015-02-25 18:51:03 +01:00
class KivyRecipe(CythonRecipe):
# post kivy 1.11.1, including statusbar/fullscreen fix
version = "38fcbd5b90c99a96d82682f14986836cde81412d"
url = "https://github.com/kivy/kivy/archive/{version}.zip"
library = "libkivy.a"
depends = ["sdl2", "sdl2_image", "sdl2_mixer", "sdl2_ttf", "ios",
"pyobjus", "python"]
pbx_frameworks = ["OpenGLES", "Accelerate", "CoreMedia", "CoreVideo"]
pre_build_ext = True
def get_recipe_env(self, arch):
env = super(KivyRecipe, self).get_recipe_env(arch)
env["KIVY_SDL2_PATH"] = ":".join([
join(self.ctx.dist_dir, "include", "common", "sdl2"),
join(self.ctx.dist_dir, "include", "common", "sdl2_image"),
join(self.ctx.dist_dir, "include", "common", "sdl2_ttf"),
join(self.ctx.dist_dir, "include", "common", "sdl2_mixer")])
return env
def build_arch(self, arch):
self._patch_setup()
super(KivyRecipe, self).build_arch(arch)
def _patch_setup(self):
# patch setup to remove some functionnalities
pyconfig = join(self.build_dir, "setup.py")
def _remove_line(lines, pattern):
for line in lines[:]:
if pattern in line:
lines.remove(line)
with open(pyconfig) as fd:
lines = fd.readlines()
_remove_line(lines, "flags['libraries'] = ['GLESv2']")
2015-02-12 00:53:22 +01:00
#_remove_line(lines, "c_options['use_sdl'] = True")
with open(pyconfig, "w") as fd:
fd.writelines(lines)
def reduce_python_package(self):
dest_dir = join(self.ctx.site_packages_dir, "kivy")
shutil.rmtree(join(dest_dir, "tools"))
shutil.rmtree(join(dest_dir, "tests"))
recipe = KivyRecipe()