burrow/burrow-gtk/com.hackclub.burrow.json
dav 6d4fbcd078 Small Fixes for Flatpak Building
Be sure to install gnome 45 not 44
Build: `flatpak-builder --keep-build-dirs --user --disable-rofiles-fuse flatpak_app com.hackclub.burrow.json`
2023-11-04 18:00:12 -07:00

64 lines
1.5 KiB
JSON

{
"app-id" : "com.hackclub.burrow",
"runtime" : "org.gnome.Platform",
"runtime-version" : "45",
"sdk" : "org.gnome.Sdk",
"sdk-extensions" : [
"org.freedesktop.Sdk.Extension.rust-stable"
],
"command" : "burrow-gtk",
"finish-args" : [
"--share=network",
"--share=ipc",
"--socket=fallback-x11",
"--device=dri",
"--socket=wayland"
],
"build-options" : {
"append-path" : "/usr/lib/sdk/rust-stable/bin",
"build-args" : [
"--share=network"
],
"env" : {
"RUST_BACKTRACE" : "1",
"RUST_LOG" : "burrow-gtk=debug"
}
},
"cleanup" : [
"/include",
"/lib/pkgconfig",
"/man",
"/share/doc",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"*.la",
"*.a"
],
"modules" : [
{
"name": "blueprint-compiler",
"buildsystem": "meson",
"sources": [
{
"type": "git",
"url": "https://gitlab.gnome.org/jwestman/blueprint-compiler",
"tag": "v0.8.1"
}
]
},
{
"name" : "burrow-gtk",
"builddir" : true,
"subdir" : "burrow-gtk",
"buildsystem" : "meson",
"sources" : [
{
"type": "dir",
"path": "./"
}
]
}
]
}