summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-04-02 00:31:17 +0000
committerMatthias Clasen <mclasen@redhat.com>2019-04-02 00:33:05 +0000
commite54e72b2908c8ef598eea27df3419f8654ba6832 (patch)
tree56f4313124c91b645f53156ed614d793c0e7728a /build-aux
parente5ea6cfcb52e7e733ae7f3a2eaad67cb5dde1b61 (diff)
downloadgtk+-e54e72b2908c8ef598eea27df3419f8654ba6832.tar.gz
Add a flatpak manifest for org.gtk.IconBrowser4
And build it in ci.
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/flatpak/org.gtk.IconBrowser4.json72
1 files changed, 72 insertions, 0 deletions
diff --git a/build-aux/flatpak/org.gtk.IconBrowser4.json b/build-aux/flatpak/org.gtk.IconBrowser4.json
new file mode 100644
index 0000000000..6dc46fcdab
--- /dev/null
+++ b/build-aux/flatpak/org.gtk.IconBrowser4.json
@@ -0,0 +1,72 @@
+{
+ "app-id": "org.gtk.IconBrowser4",
+ "runtime": "org.gnome.Platform",
+ "runtime-version": "master",
+ "sdk": "org.gnome.Sdk",
+ "command": "gtk4-icon-browser",
+ "tags": ["devel", "development", "nightly"],
+ "desktop-file-name-prefix": "(Development) ",
+ "finish-args": [
+ "--device=dri",
+ "--share=ipc",
+ "--socket=fallback-x11",
+ "--socket=wayland",
+ "--talk-name=org.gtk.vfs", "--talk-name=org.gtk.vfs.*"
+ ],
+ "cleanup": [
+ "/include",
+ "/lib/pkgconfig", "/share/pkgconfig",
+ "/share/aclocal",
+ "/man", "/share/man", "/share/gtk-doc",
+ "*.la", ".a",
+ "/lib/girepository-1.0",
+ "/share/gir-1.0",
+ "/share/doc"
+ ],
+ "modules": [
+ {
+ "name" : "wayland",
+ "buildsystem" : "autotools",
+ "builddir" : true,
+ "config-opts" : [
+ "--disable-documentation"
+ ],
+ "sources" : [
+ {
+ "type" : "git",
+ "url" : "https://github.com/wayland-project/wayland.git"
+ }
+ ]
+ },
+ {
+ "name": "graphene",
+ "buildsystem": "meson",
+ "builddir": true,
+ "config-opts": [
+ "--libdir=/app/lib",
+ "-Dtests=false",
+ "-Dbenchmarks=false"
+ ],
+ "sources": [
+ {
+ "type": "git",
+ "url": "https://github.com/ebassi/graphene.git"
+ }
+ ]
+ },
+ {
+ "name": "gtk",
+ "buildsystem": "meson",
+ "builddir": true,
+ "config-opts": [
+ "--libdir=/app/lib"
+ ],
+ "sources": [
+ {
+ "type": "git",
+ "url": "https://gitlab.gnome.org/GNOME/gtk.git"
+ }
+ ]
+ }
+ ]
+}