kivy-ios/recipes/notifications/__init__.py
2018-01-31 04:15:51 +05:30

18 lines
344 B
Python
Executable file

from toolchain import CythonRecipe
class IosNotifRecipe(CythonRecipe):
version = "master"
url = "src"
library = "libnotifications.a"
pbx_frameworks = ["UserNotifications"]
depends = ["python"]
def install(self):
self.install_python_package(name="notifications.so", is_dir=False)
recipe = IosNotifRecipe()