aboutsummaryrefslogtreecommitdiff
path: root/flatpak/content/io.gitlab.LibreWolf.json
diff options
context:
space:
mode:
Diffstat (limited to 'flatpak/content/io.gitlab.LibreWolf.json')
-rw-r--r--flatpak/content/io.gitlab.LibreWolf.json37
1 files changed, 21 insertions, 16 deletions
diff --git a/flatpak/content/io.gitlab.LibreWolf.json b/flatpak/content/io.gitlab.LibreWolf.json
index 0e2b549..8feb9d6 100644
--- a/flatpak/content/io.gitlab.LibreWolf.json
+++ b/flatpak/content/io.gitlab.LibreWolf.json
@@ -4,22 +4,27 @@
"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"
- }]
- }],
+ "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": "flatpak/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: */
+ "--share=ipc",
+ "--socket=x11",
+ "--socket=wayland",
+ "--filesystem=home:rw",
+ "--share=network"
]
}
bgstack15