nautilus/org.gnome.Nautilus.json
Carlos Soriano 13c959d389 build: Update flatpak build and organize folder structure
Flatpak doesn't need to build meson or a patch for ninja and meson to
work properly:
https://github.com/flatpak/flatpak/issues/607
https://bugzilla.gnome.org/show_bug.cgi?id=774368
273e2460aa

This patch updates this and improves the folder structure with a
build-aux folder to clear up the root folder.

https://bugzilla.gnome.org/show_bug.cgi?id=780580
2017-03-27 12:14:47 +03:00

117 lines
3.8 KiB
JSON

{
"app-id": "org.gnome.Nautilus",
"runtime": "org.gnome.Platform",
"runtime-version": "master",
"sdk": "org.gnome.Sdk",
"command": "nautilus",
"tags": ["devel", "development", "nightly"],
"desktop-file-name-prefix": "(Development) ",
"finish-args": [
/* X11 + XShm access */
"--share=ipc", "--socket=x11",
/* Wayland access */
"--socket=wayland",
/* Online accounts support */
"--talk-name=org.gnome.OnlineAccounts",
/* Tracker */
"--talk-name=org.freedesktop.Tracker1",
/* XXX This sucks */
"--filesystem=home",
/* Browse gvfs */
"--talk-name=org.gtk.vfs", "--talk-name=org.gtk.vfs.*",
/* 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"
],
"build-options" : {
"cflags": "-Wno-deprecated-declarations -Og",
"cxxflags": "-Wno-deprecated-declarations -Og"
},
"cleanup": [ "/include", "/share/bash-completion" ],
"modules": [
{
"name": "libexif",
"sources": [
{
"type": "archive",
"url": "https://downloads.sourceforge.net/libexif/libexif-0.6.21.tar.bz2",
"sha256": "16cdaeb62eb3e6dfab2435f7d7bccd2f37438d21c5218ec4e58efa9157d4d41a"
},
/* For arm architectures */
{
"type": "shell",
"commands": [
"cp -f /usr/share/gnu-config/config.sub .",
"cp -f /usr/share/gnu-config/config.guess ."
]
}
]
},
{
"name": "exempi",
"config-opts": [
"--disable-unittest"
],
"sources": [
{
"type": "git",
"url": "https://anongit.freedesktop.org/git/exempi.git"
}
]
},
{
"name": "tracker",
"cleanup": [ "/bin", "/etc", "/libexec" ],
"config-opts": [ "--disable-miner-apps", "--disable-static",
"--disable-tracker-extract", "--disable-tracker-needle",
"--disable-tracker-preferences", "--disable-artwork",
"--disable-tracker-writeback", "--disable-miner-user-guides",
"--with-bash-completion-dir=no" ],
"sources": [
{
"type": "git",
"url": "https://git.gnome.org/browse/tracker"
}
]
},
{
"name": "gnome-desktop",
"config-opts": ["--disable-debug-tools", "--disable-udev"],
"sources": [
{
"type": "git",
"url": "https://git.gnome.org/browse/gnome-desktop"
}
]
},
{
"name": "gnome-autoar",
"sources": [
{
"type": "git",
"url": "https://git.gnome.org/browse/gnome-autoar"
}
]
},
{
"buildsystem": "meson",
"builddir": true,
"name": "nautilus",
"config-opts": [
"-Denable-desktop=false",
"-Denable-selinux=false",
"-Denable-xmp=true",
"-Denable-exif=true",
"--libdir=/app/lib"
],
"sources": [
{
"type": "git",
"url": "https://git.gnome.org/browse/nautilus"
}
]
}
]
}