moodstocks/pymoodstocks: add recipes for supporting the moodstocks SDK and pymoodstocks (powered by Kivy!)
This commit is contained in:
parent
07a3ed6222
commit
554c1cef64
2 changed files with 29 additions and 0 deletions
15
recipes/moodstocks/__init__.py
Normal file
15
recipes/moodstocks/__init__.py
Normal file
|
@ -0,0 +1,15 @@
|
|||
from toolchain import Recipe
|
||||
|
||||
|
||||
class MoodstocksRecipe(Recipe):
|
||||
version = "4.1.5"
|
||||
url = "https://moodstocks.com/static/releases/moodstocks-ios-sdk-{version}.zip"
|
||||
frameworks = ["Moodstocks.framework"]
|
||||
archs = ["i386"]
|
||||
pbx_frameworks = [
|
||||
"Moodstocks", "AVFoundation", "CoreMedia", "CoreVideo", "CFNetwork"]
|
||||
|
||||
|
||||
recipe = MoodstocksRecipe()
|
||||
|
||||
|
14
recipes/pymoodstocks/__init__.py
Normal file
14
recipes/pymoodstocks/__init__.py
Normal file
|
@ -0,0 +1,14 @@
|
|||
from toolchain import PythonRecipe
|
||||
|
||||
|
||||
class PyMoodstocksRecipe(PythonRecipe):
|
||||
version = "master"
|
||||
url = "https://github.com/tito/pymoodstock/archive/{version}.zip"
|
||||
depends = ["moodstocks", "kivy", "pyobjus"]
|
||||
sources = ["src/ios"]
|
||||
archs = ["i386"]
|
||||
|
||||
|
||||
recipe = PyMoodstocksRecipe()
|
||||
|
||||
|
Loading…
Add table
Reference in a new issue