kivy-ios/recipes/notifications/__init__.py

18 lines
344 B
Python
Raw Permalink Normal View History

2018-01-30 23:45:51 +01:00
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()