Files
HackerOoT/tools/Flips/flatpak/com.github.Alcaro.Flips.json
2024-02-04 13:04:13 +01:00

37 lines
962 B
JSON

{
"app-id" : "com.github.Alcaro.Flips",
"runtime" : "org.gnome.Platform",
"runtime-version" : "42",
"sdk" : "org.gnome.Sdk",
"command" : "flips",
"finish-args" : [
/* X11 + XShm access */
"--share=ipc",
"--socket=fallback-x11",
/* Wayland access */
"--socket=wayland",
/* OpenGL + DRI access */
"--device=dri",
/* Needed to save patched ROMs */
"--filesystem=home",
/* Needed to find the ROMs and patches */
"--filesystem=host:ro"
],
"modules" : [
{
"name" : "flips",
"buildsystem" : "simple",
"build-commands": [
"sh make.sh",
"make install PREFIX=/app"
],
"sources" : [
{
"type" : "git",
"url" : "https://github.com/Alcaro/Flips.git"
}
]
}
]
}