2015-02-25 13:37:52 +01:00
|
|
|
from toolchain import CythonRecipe
|
2015-02-24 11:30:02 +01:00
|
|
|
|
|
|
|
|
2015-02-25 13:37:52 +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"
|
2015-03-04 16:42:32 +01:00
|
|
|
depends = ["python", "sdl2", "sdl2_mixer"]
|
2015-02-25 13:37:52 +01:00
|
|
|
pre_build_ext = True
|
2015-02-24 11:30:02 +01:00
|
|
|
|
|
|
|
|
|
|
|
recipe = AudiostreamRecipe()
|