mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 22:04:19 +08:00
21 lines
370 B
TOML
21 lines
370 B
TOML
[source]
|
|
git = "https://gitlab.redox-os.org/redox-os/sdl1.2.git"
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"liborbital"
|
|
]
|
|
script = """
|
|
COOKBOOK_CONFIGURE_FLAGS+=(
|
|
--disable-loadso
|
|
--disable-pthread-sem
|
|
--disable-pulseaudio
|
|
--disable-video-x11
|
|
--enable-clock_gettime
|
|
--enable-redoxaudio
|
|
--enable-video-orbital
|
|
)
|
|
cookbook_configure
|
|
"""
|