mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 15:34:18 +08:00
42 lines
1003 B
TOML
42 lines
1003 B
TOML
[source]
|
|
git = "https://github.com/jackpot51/retroarch.git"
|
|
script = """
|
|
./fetch-submodules.sh
|
|
"""
|
|
|
|
[build]
|
|
template = "custom"
|
|
dependencies = [
|
|
"liborbital",
|
|
"libretro-super",
|
|
"mesa",
|
|
"openssl3",
|
|
"sdl2",
|
|
"zlib",
|
|
]
|
|
script = """
|
|
rsync -av --delete "${COOKBOOK_SOURCE}/" ./
|
|
|
|
# For now, we will statically link with the snes9x libretro
|
|
mkdir -pv "${COOKBOOK_SYSROOT}/lib"
|
|
cp -v "${COOKBOOK_SYSROOT}/share/libretro/snes9x_libretro.a" "${COOKBOOK_SYSROOT}/lib/libretro.a"
|
|
|
|
COOKBOOK_CONFIGURE_FLAGS=(
|
|
--host="${TARGET}"
|
|
--prefix="/"
|
|
--disable-builtinzlib # conflicts with zlib
|
|
--disable-discord # does not link
|
|
--disable-dylib
|
|
--disable-dynamic
|
|
--disable-netplaydiscovery # missing ifaddrs.h
|
|
--disable-thread_storage # crash in pthread_setspecific called by sthread_tls_set
|
|
--disable-threads # prevents hang
|
|
--enable-opengl
|
|
--enable-sdl2
|
|
--enable-ssl
|
|
--enable-zlib
|
|
--with-libretro="-lretro -lstdc++ -lz"
|
|
)
|
|
cookbook_configure
|
|
"""
|