Flips/flatpak/com.github.Alcaro.Flips.json
Adrien Plazas fe3c3ea5a2 flatpak: Update the manifest
This makes the manifest use the SDK's master branch, updates the build
rules, and explicits to build Flips' master branch.

Signed-off-by: Adrien Plazas <aplazas@gnome.org>
2024-07-04 19:40:57 +02:00

38 lines
1.0 KiB
JSON

{
"app-id" : "com.github.Alcaro.Flips",
"runtime" : "org.gnome.Platform",
"runtime-version" : "master",
"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-linux.sh --cflags=-DFLATPAK",
"make install PREFIX=/app"
],
"sources" : [
{
"type" : "git",
"url" : "https://github.com/Alcaro/Flips.git",
"branch" : "master"
}
]
}
]
}