redox/recipes/sdl2/recipe.toml
Nagy Tibor 9c5886f0d8 Fix SDL2 build
Wrong repo path got specified in the SDL2 recipe when moving the project into
the redox-os namespace.
2022-10-04 20:51:15 +02:00

29 lines
508 B
TOML

#TODO: TEST
[source]
git = "https://gitlab.redox-os.org/redox-os/sdl2.git"
[build]
template = "custom"
dependencies = [
"liborbital",
"mesa",
]
script = """
COOKBOOK_CONFIGURE_FLAGS=(
--host="${TARGET}"
--prefix="/"
--disable-shared
--disable-pulseaudio
--disable-video-x11
--disable-loadso
--disable-sdl-dlopen
--enable-threads
--enable-audio
--enable-dummyaudio
--enable-video-orbital
--enable-redoxaudio
--enable-cdrom
)
cookbook_configure
"""