extensions-app: Add flatpak manifest

We finally have everything in place for distributing the Extensions app
as flatpak without jumping through too many hoops. Add a manifest that
can produce a nightly build like other GNOME modules, and can serve as
a template for a stable manifest on flathub.

https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1133
This commit is contained in:
Florian Müllner 2019-12-01 03:28:56 +01:00 committed by Georges Basile Stavracas Neto
parent 39e6375aff
commit 73df61f36d

View File

@ -0,0 +1,37 @@
{
"app-id": "org.gnome.Extensions",
"runtime": "org.gnome.Platform",
"runtime-version": "master",
"sdk": "org.gnome.Sdk",
"command": "gnome-shell-extension-prefs",
"tags": ["nightly"],
"desktop-file-name-prefix": "(Nightly) ",
"finish-args": [
"--share=ipc", "--socket=fallback-x11",
"--socket=wayland",
"--talk-name=org.gnome.Shell.Extensions"
],
"build-options": {
"cflags": "-O2 -g"
},
"modules": [
{
"name": "gnome-extensions-app",
"buildsystem": "meson",
"builddir": true,
"subdir": "subprojects/extensions-app",
"sources": [
{
"type": "git",
"url": "https://gitlab.gnome.org/GNOME/gnome-shell.git"
},
{
"type": "shell",
"commands": [
"subprojects/extensions-app/generate-translations.sh"
]
}
]
}
]
}