a583d5db07
Co-authored-by: richard <richard@dotmodus>
16 lines
375 B
Python
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()
|