kivy-ios/recipes/ios/__init__.py

18 lines
329 B
Python
Raw Normal View History

from toolchain import CythonRecipe
2015-02-12 00:51:54 +01:00
class IosRecipe(CythonRecipe):
2015-02-12 00:51:54 +01:00
version = "master"
url = "src"
library = "libios.a"
depends = ["python"]
pbx_frameworks = ["MessageUI", "CoreMotion", "UIKit"]
2015-02-12 00:51:54 +01:00
def install(self):
self.install_python_package(name="ios.so", is_dir=False)
2015-02-12 00:51:54 +01:00
recipe = IosRecipe()