kivy-ios/recipes/audiostream/__init__.py

14 lines
306 B
Python
Raw Normal View History

from toolchain import CythonRecipe
2015-02-24 11:30:02 +01:00
class AudiostreamRecipe(CythonRecipe):
2015-02-24 11:30:02 +01:00
version = "master"
url = "https://github.com/kivy/audiostream/archive/{version}.zip"
library = "libaudiostream.a"
depends = ["python", "sdl2", "sdl2_mixer"]
pre_build_ext = True
2015-02-24 11:30:02 +01:00
recipe = AudiostreamRecipe()