serenity/Ports/RetroArch/package.sh

37 lines
1,021 B
Bash
Raw Normal View History

2022-05-07 18:46:03 +00:00
#!/usr/bin/env -S bash ../.port_include.sh
port=RetroArch
useconfigure="true"
2022-10-27 10:08:24 +00:00
version="1.12.0"
archive_hash="c912e32a0300f16ade827d48a4a948d5dab40b764cd1169f61108c6f5803649a"
2023-07-10 11:10:29 +00:00
files=(
"https://github.com/libretro/${port}/archive/refs/tags/v${version}.tar.gz#$archive_hash"
2023-07-10 11:10:29 +00:00
)
2022-05-07 18:46:03 +00:00
depends=("freetype" "SDL2" "zlib")
configopts=(
"--disable-builtinglslang"
"--disable-discord"
"--disable-glsl"
"--disable-glslang"
"--disable-opengl"
"--disable-slang"
"--disable-spirv_cross"
"--disable-systemmbedtls"
"--disable-update_cores"
)
launcher_name=RetroArch
launcher_category='&Games'
2022-05-07 18:46:03 +00:00
launcher_command=/usr/local/bin/retroarch
icon_file=media/retroarch.ico
export CFLAGS="-I${SERENITY_INSTALL_ROOT}/usr/local/include/SDL2"
2022-05-07 18:46:03 +00:00
post_install() {
echo "==== Post installation instructions ===="
echo "Please remember to use the online updater"
echo "to install cores info files using main menu"
echo "online updater > update core info files"
echo "before installing libretro cores from the port"
}