2015-02-27 18:55:04 +01:00
|
|
|
from toolchain import PythonRecipe
|
|
|
|
|
|
|
|
|
|
|
|
class PyMoodstocksRecipe(PythonRecipe):
|
|
|
|
version = "master"
|
2015-02-27 19:57:47 +01:00
|
|
|
url = "https://github.com/tito/pymoodstocks/archive/{version}.zip"
|
2015-02-27 18:55:04 +01:00
|
|
|
depends = ["moodstocks", "kivy", "pyobjus"]
|
|
|
|
sources = ["src/ios"]
|
|
|
|
archs = ["i386"]
|
|
|
|
|
|
|
|
|
|
|
|
recipe = PyMoodstocksRecipe()
|
|
|
|
|
|
|
|
|