summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Mikhaylenko <exalm7659@gmail.com>2018-08-30 20:49:24 +0500
committerAlexander Mikhaylenko <exalm7659@gmail.com>2019-02-16 13:51:32 +0500
commitc95ed60e16bcdaca01289bcbc7d05c3b2adac173 (patch)
treea649c5da1b0b4ff8ddd675b93ca2c561ed82668f
parentf2df91c43e105a4b4cab0aed5bf62b0c65b3b440 (diff)
downloadcheese-wip/exalm/flatpak.tar.gz
flatpak: Add flatpak manifestwip/exalm/flatpak
-rw-r--r--org.gnome.Cheese.json103
1 files changed, 103 insertions, 0 deletions
diff --git a/org.gnome.Cheese.json b/org.gnome.Cheese.json
new file mode 100644
index 00000000..95e1b156
--- /dev/null
+++ b/org.gnome.Cheese.json
@@ -0,0 +1,103 @@
+{
+ "app-id" : "org.gnome.Cheese",
+ "runtime" : "org.gnome.Platform",
+ "runtime-version" : "3.30",
+ "sdk" : "org.gnome.Sdk",
+ "branch" : "stable",
+ "command" : "cheese",
+ "tags" : [
+ "nightly"
+ ],
+ "desktop-file-name-prefix" : "(Nightly) ",
+ "finish-args" : [
+ /* X11 + XShm access */
+ "--share=ipc",
+ "--socket=x11",
+ /* Wayland access */
+ "--socket=wayland",
+ /* PulseAudio access, needed to record videos */
+ "--socket=pulseaudio",
+ /* Needed to access camera */
+ "--device=all",
+ /* 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 load and save photos */
+ "--filesystem=xdg-pictures",
+ /* Needed to load and save videos */
+ "--filesystem=xdg-videos"
+ ],
+ "cleanup" : [
+ "/include",
+ "/lib/pkgconfig",
+ "/share/pkgconfig",
+ "/share/aclocal",
+ "/man",
+ "/share/man",
+ "/share/gtk-doc",
+ "*.la",
+ "*.a"
+ ],
+ "modules" : [
+ {
+ "name" : "gnome-desktop",
+ "buildsystem" : "meson",
+ "config-opts" : ["-Ddebug_tools=false", "-Dudev=disabled"],
+ "sources" : [
+ {
+ "type" : "git",
+ "url" : "https://gitlab.gnome.org/GNOME/gnome-desktop.git"
+ }
+ ]
+ },
+ {
+ "name" : "yelp-tools",
+ "sources" : [
+ {
+ "type" : "git",
+ "url" : "https://gitlab.gnome.org/GNOME/yelp-tools.git"
+ }
+ ]
+ },
+ {
+ "name" : "totem-pl-parser",
+ "buildsystem" : "meson",
+ "sources" : [
+ {
+ "type" : "git",
+ "url" : "https://gitlab.gnome.org/GNOME/totem-pl-parser.git"
+ }
+ ]
+ },
+ {
+ "name" : "totem-video-thumbnailer",
+ "buildsystem" : "meson",
+ "sources" : [
+ {
+ "type" : "git",
+ "url" : "https://gitlab.gnome.org/GNOME/totem-video-thumbnailer.git"
+ }
+ ]
+ },
+ {
+ "name" : "gnome-video-effects",
+ "sources" : [
+ {
+ "type" : "git",
+ "url" : "https://gitlab.gnome.org/GNOME/gnome-video-effects.git"
+ }
+ ]
+ },
+ {
+ "name" : "cheese",
+ "sources" : [
+ {
+ "type" : "git",
+ "url" : "https://gitlab.gnome.org/GNOME/cheese.git"
+ }
+ ]
+ }
+ ]
+} \ No newline at end of file