2018-11-09 17:54:56 +01:00
|
|
|
from toolchain import CythonRecipe
|
2015-02-18 03:01:22 +01:00
|
|
|
|
2015-02-25 13:37:52 +01:00
|
|
|
class PyobjusRecipe(CythonRecipe):
|
2015-02-18 03:01:22 +01:00
|
|
|
version = "master"
|
|
|
|
url = "https://github.com/kivy/pyobjus/archive/{version}.zip"
|
|
|
|
library = "libpyobjus.a"
|
|
|
|
depends = ["python"]
|
2015-02-25 13:37:52 +01:00
|
|
|
pre_build_ext = True
|
2015-02-18 03:01:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
recipe = PyobjusRecipe()
|