11 lines
266 B
Python
11 lines
266 B
Python
from toolchain import CythonRecipe
|
|
|
|
class PyobjusRecipe(CythonRecipe):
|
|
version = "master"
|
|
url = "https://github.com/kivy/pyobjus/archive/{version}.zip"
|
|
library = "libpyobjus.a"
|
|
depends = ["python"]
|
|
pre_build_ext = True
|
|
|
|
|
|
recipe = PyobjusRecipe()
|