fractal/flatpak/org.gnome.Fractal-release.json
Alejandro Domínguez 86e507739c Fix and update libhandy dependency
The wrapper crate required >= 1.0 so it didn't build on release.
That made the meson wrapper unnecessary.

On nightly org.gnome.Platform bundles libhandy so it's not needed
as a flatpak manifest module anymore.
2020-11-10 07:48:39 +00:00

112 lines
3.1 KiB
JSON

{
"app-id" : "org.gnome.Fractal",
"runtime" : "org.gnome.Platform",
"runtime-version" : "3.36",
"sdk" : "org.gnome.Sdk",
"sdk-extensions" : [
"org.freedesktop.Sdk.Extension.rust-stable"
],
"command" : "fractal",
"finish-args" : [
"--share=network",
"--share=ipc",
"--socket=x11",
"--socket=wayland",
"--socket=pulseaudio",
"--device=dri",
"--talk-name=org.freedesktop.secrets",
"--talk-name=org.freedesktop.Notifications"
],
"build-options" : {
"append-path" : "/usr/lib/sdk/rust-stable/bin",
"build-args" : [
"--share=network"
],
"env" : {
"CARGO_HOME" : "/run/build/Fractal/cargo",
"RUST_BACKTRACE" : "1"
}
},
"add-extensions": {
"org.freedesktop.Platform.ffmpeg-full": {
"directory": "lib/ffmpeg",
"version": "19.08",
"add-ld-path": "."
}
},
"cleanup-commands": [
"mkdir -p /app/lib/ffmpeg"
],
"modules" : [
{
"name" : "libhandy",
"buildsystem" : "meson",
"config-opts" : [
"-Dprofiling=false",
"-Dintrospection=enabled",
"-Dgtk_doc=false",
"-Dtests=false",
"-Dexamples=false",
"-Dvapi=false",
"-Dglade_catalog=disabled"
],
"sources" : [
{
"type" : "git",
"url" : "https://gitlab.gnome.org/GNOME/libhandy",
"tag" : "1.0.1"
}
]
},
{
"name" : "gspell",
"config-opts" : [
"--disable-gtk-doc",
"--disable-gtk-doc-html"
],
"cleanup" : [
"/bin",
"/include",
"/lib/pkgconfig",
"*.la",
"/share/gir-1.0",
"/share/gtk-doc",
"/share/vala"
],
"sources" : [
{
"type" : "archive",
"url" : "https://download.gnome.org/sources/gspell/1.8/gspell-1.8.2.tar.xz",
"sha256" : "bb9195c3a95bacf556d0203e9691f7489e0d3bc5ae1e5a440c89b2f2435d3ed6"
}
]
},
{
"name" : "gst-editing-services",
"config-opts" : [
"--disable-Werror"
],
"sources" : [
{
"type" : "git",
"url" : "https://gitlab.freedesktop.org/gstreamer/gst-editing-services.git",
"tag" : "1.16.1"
}
]
},
{
"name" : "Fractal",
"buildsystem" : "meson",
"config-opts" : [
"-Dprofile=default"
],
"sources" : [
{
"type" : "git",
"branch" : "release-4.4.0",
"url" : ".."
}
]
}
]
}