File: flatpak.rst

package info (click to toggle)
blueprint-compiler 0.18.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,140 kB
  • sloc: python: 8,504; sh: 31; makefile: 6
file content (26 lines) | stat: -rw-r--r-- 676 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
=======
Flatpak
=======

Flathub's builders don't allow internet access during the build; everything that
goes into the build must be specified in the manifest. This means meson
submodules won't work. Instead, you need to install blueprint-compiler as
a module in your flatpak manifest:

.. code-block:: json

   {
     "name": "blueprint-compiler",
     "buildsystem": "meson",
     "cleanup": ["*"],
     "sources": [
       {
         "type": "git",
         "url": "https://gitlab.gnome.org/GNOME/blueprint-compiler",
         "tag": "v0.18.0"
       }
     ]
   }

You can keep the submodule configuration--Meson will ignore it if
blueprint-compiler is already installed.