17 lines
329 B
Python
17 lines
329 B
Python
from toolchain import CythonRecipe
|
|
|
|
|
|
class IosRecipe(CythonRecipe):
|
|
version = "master"
|
|
url = "src"
|
|
library = "libios.a"
|
|
depends = ["python"]
|
|
pbx_frameworks = ["MessageUI", "CoreMotion", "UIKit"]
|
|
|
|
def install(self):
|
|
self.install_python_package(name="ios.so", is_dir=False)
|
|
|
|
|
|
recipe = IosRecipe()
|
|
|
|
|