kivy-ios/recipes/ios/__init__.py
Richard Larkin a583d5db07
Add NativeImagePicker class for use from the player IOS FileChooser class (#428)
Co-authored-by: richard <richard@dotmodus>
2020-03-10 21:24:31 +02:00

16 lines
375 B
Python

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