Add sdl recipe

This commit is contained in:
Jeremy Soller 2020-05-22 08:22:09 -06:00
parent db9f4e40bf
commit 622bc4a1e9
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

23
recipes/sdl/recipe.toml Normal file
View File

@ -0,0 +1,23 @@
[source]
tar = "https://www.libsdl.org/release/SDL-1.2.15.tar.gz"
patches = [
"redox.patch"
]
script = "./autogen.sh"
[build]
template = "custom"
dependencies = [
"liborbital"
]
script = """
COOKBOOK_CONFIGURE_FLAGS+=(
--disable-pulseaudio
--disable-video-x11
--disable-loadso
--enable-redoxaudio
--enable-clock_gettime
--enable-video-orbital
)
cookbook_configure
"""