redox/recipes/retroarch/recipe.toml
2022-07-22 21:29:39 -06:00

25 lines
473 B
TOML

[source]
git = "https://github.com/jackpot51/retroarch.git"
[build]
template = "custom"
dependencies = [
"liborbital",
"sdl",
]
script = """
pushd "${COOKBOOK_SOURCE}"
./fetch-submodules.sh
popd
rsync -av --delete "${COOKBOOK_SOURCE}/" ./
COOKBOOK_CONFIGURE_FLAGS=(
--host="${TARGET}"
--prefix="/"
--disable-networking # missing ifaddrs.h
--disable-thread_storage # crash in pthread_setspecific called by sthread_tls_set
)
cookbook_configure
"""