811cbd48a7
This allows the recipe to point on an versionless python.
16 lines
355 B
Python
16 lines
355 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=self.so_filename("ios"), is_dir=False)
|
|
|
|
|
|
recipe = IosRecipe()
|