kivy-ios/recipes/ios/__init__.py
2018-11-02 11:44:25 +01:00

16 lines
355 B
Python

from toolchain import CythonRecipe
class IosRecipe(CythonRecipe):
version = "master"
url = "src"
library = "libios.a"
depends = ["python"]
pbx_frameworks = ["MessageUI", "CoreMotion", "UIKit"]
def install(self):
self.install_python_package(
name=self.so_filename("ios"), is_dir=False)
recipe = IosRecipe()