Skip to content

Instantly share code, notes, and snippets.

@cfoch
Created August 11, 2019 20:46
Show Gist options
  • Save cfoch/0faf7cb9fecb3d8e172473a90d3509a3 to your computer and use it in GitHub Desktop.
Save cfoch/0faf7cb9fecb3d8e172473a90d3509a3 to your computer and use it in GitHub Desktop.
{
"app-id" : "org.gnome.Cheese",
"runtime" : "org.gnome.Platform",
"runtime-version" : "3.32",
"sdk" : "org.gnome.Sdk",
"branch" : "stable",
"build-options": {
"cflags": "-O2 -g",
"cxxflags": "-O2 -g",
"env": {
"PYTHON": "python3",
"GST_PLUGIN_SYSTEM_PATH": "/app/lib/gstreamer-1.0/",
"FREI0R_PATH": "/app/lib/frei0r-1/",
"PKG_CONFIG_PATH": "/app/lib/pkgconfig/",
"VERBOSE": "1"
},
"prepend-ld-library-path": "/app/lib/",
"prepend-ld-library-path": "/app/lib/gstreamer-1.0",
"prepend-pkg-config-path": "/app/lib/pkgconfig/",
"strip": false,
"no-debuginfo": true
},
"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"
],
"modules" : [
/* gst-plugins-cheese support */
{
"name": "gstreamer",
"buildsystem": "meson",
"builddir": true,
"config-opts": [
"-Dgtk_doc=disabled",
"--libdir=lib"
],
"sources": [
{
"type": "git",
"url": "https://gitlab.freedesktop.org/gstreamer/gstreamer.git",
"branch": "1.16.0"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment