summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorStefano Facchini <stefano.facchini@gmail.com>2018-10-13 09:55:38 +0200
committerStefano Facchini <stefano.facchini@gmail.com>2018-10-13 09:57:47 +0200
commiteb49f6eaa5343696aabc0d4a9a994f8efcc7ae8d (patch)
tree0e3de25240a32c5a096f262067140a45861b7e69 /build-aux
parent9706b07235c025fc65711ff9ed128689fe97b1f9 (diff)
downloadbaobab-eb49f6eaa5343696aabc0d4a9a994f8efcc7ae8d.tar.gz
Move flatpak manifest to its own directory
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/flatpak/org.gnome.baobab.json59
1 files changed, 59 insertions, 0 deletions
diff --git a/build-aux/flatpak/org.gnome.baobab.json b/build-aux/flatpak/org.gnome.baobab.json
new file mode 100644
index 0000000..59e2fb7
--- /dev/null
+++ b/build-aux/flatpak/org.gnome.baobab.json
@@ -0,0 +1,59 @@
+{
+ "app-id" : "org.gnome.baobab",
+ "runtime" : "org.gnome.Platform",
+ "runtime-version" : "master",
+ "sdk" : "org.gnome.Sdk",
+ "command" : "baobab",
+ "tags" : [
+ "devel"
+ ],
+ "finish-args" : [
+ /* X11 + XShm access */
+ "--share=ipc",
+ "--socket=x11",
+ /* Wayland access */
+ "--socket=wayland",
+ /* Needed for dconf to work */
+ "--filesystem=xdg-run/dconf",
+ "--filesystem=~/.config/dconf:ro",
+ "--talk-name=ca.desrt.dconf",
+ "--env=DCONF_USER_CONFIG_DIR=.config/dconf",
+ /* Needed to be able to scan files */
+ "--filesystem=host:ro",
+ /* Access to other apps' files */
+ "--filesystem=~/.var/app:ro"
+ ],
+ "build-options" : {
+ "cflags" : "-O2 -g",
+ "cxxflags" : "-O2 -g",
+ "env" : {
+ }
+ },
+ "cleanup" : [
+ "/include",
+ "/lib/pkgconfig",
+ "/share/pkgconfig",
+ "/share/aclocal",
+ "/man",
+ "/share/man",
+ "/share/gtk-doc",
+ "*.la",
+ "*.a",
+ "/lib/girepository-1.0",
+ "/share/doc",
+ "/share/gir-1.0"
+ ],
+ "modules" : [
+ {
+ "name" : "baobab",
+ "buildsystem" : "meson",
+ "builddir" : true,
+ "sources" : [
+ {
+ "type" : "git",
+ "url" : "https://gitlab.gnome.org/GNOME/baobab.git"
+ }
+ ]
+ }
+ ]
+}