From 7564a16a0ba02e5b9b4e75f73244dca7113959f9 Mon Sep 17 00:00:00 2001 From: Adrien Plazas Date: Thu, 12 Nov 2020 11:56:58 +0100 Subject: [PATCH] Add a Flatpak manifest (Close #236) --- com.github.bleakgrey.tootle.json | 56 ++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 com.github.bleakgrey.tootle.json diff --git a/com.github.bleakgrey.tootle.json b/com.github.bleakgrey.tootle.json new file mode 100644 index 0000000..5717093 --- /dev/null +++ b/com.github.bleakgrey.tootle.json @@ -0,0 +1,56 @@ +{ + "app-id": "com.github.bleakgrey.tootle", + "runtime": "org.gnome.Platform", + "sdk": "org.gnome.Sdk", + "runtime-version": "3.36", + "command": "com.github.bleakgrey.tootle", + "finish-args": [ + "--share=network", + "--share=ipc", + "--socket=fallback-x11", + "--socket=wayland", + "--filesystem=xdg-run/dconf", + "--filesystem=~/.config/dconf:ro", + "--talk-name=ca.desrt.dconf", + "--env=DCONF_USER_CONFIG_DIR=.config/dconf" + ], + "cleanup": [ + "/include", + "/lib/pkgconfig", + "/man", + "/share/doc", + "/share/gtk-doc", + "/share/man", + "/share/pkgconfig", + "*.la", + "*.a" + ], + "modules": [ + { + "name": "libhandy", + "buildsystem": "meson", + "builddir": true, + "config-opts": [ + "-Dexamples=false", + "-Dtests=false" + ], + "sources": [ + { + "type": "git", + "url": "https://gitlab.gnome.org/GNOME/libhandy.git" + } + ] + }, + { + "name": "tootle", + "builddir": true, + "buildsystem": "meson", + "sources": [ + { + "type": "git", + "url": "https://github.com/bleakgrey/tootle.git" + } + ] + } + ] +}