aboutsummaryrefslogtreecommitdiff
path: root/flatpak/content/io.gitlab.LibreWolf.json
blob: 0e2b5490c52d1da3bccb15a58312059070130ac4 (plain)
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
{
    "app-id": "io.gitlab.LibreWolf",
    "runtime": "org.gnome.Platform",
    "runtime-version": "3.32",
    "sdk": "org.gnome.Sdk",
    "command": "librewolf",
    "modules": [{
        "name": "librewolf",
        "buildsystem": "simple",
        "build-commands": [
            "mkdir -p /app/share && mv librewolf -t /app/share",
            "mkdir -p /app/bin && ln -s /app/share/librewolf/librewolf /app/bin/"
        ],
        "sources": [{
            "type": "dir",
            "path": "source"
         }]
    }],
    "finish-args": [
        "--share=ipc", "--socket=x11",  /* X11 + XShm access */
        "--socket=wayland",             /* Wayland access */
        "--filesystem=home:rw",         /* We want full fs access so we can read the files */
        "--share=network"               /* Needs to talk to the network: */
    ]
}
bgstack15