kivy-ios/recipes/ios/__init__.py
2019-09-25 17:29:43 +02:00

16 lines
365 B
Python

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