diff options
author | ohfp <1813007-ohfp@users.noreply.gitlab.com> | 2020-03-06 21:45:34 +0000 |
---|---|---|
committer | ohfp <1813007-ohfp@users.noreply.gitlab.com> | 2020-03-06 21:45:34 +0000 |
commit | ebd593571b8962af5c6025ba666ca5a474087bb1 (patch) | |
tree | 5f0c63d360a1e932756f050baed942c4a36ee39f /flatpak/content/io.gitlab.LibreWolf.json | |
parent | fix appimage build (diff) | |
parent | temporarily disable custom config/patches during build (diff) | |
download | librewolf-linux-ebd593571b8962af5c6025ba666ca5a474087bb1.tar.gz librewolf-linux-ebd593571b8962af5c6025ba666ca5a474087bb1.tar.bz2 librewolf-linux-ebd593571b8962af5c6025ba666ca5a474087bb1.zip |
Merge branch 'arch_based_ci' into 'master'
CI/build script rewrite
See merge request librewolf-community/browser/linux!7
Diffstat (limited to 'flatpak/content/io.gitlab.LibreWolf.json')
-rw-r--r-- | flatpak/content/io.gitlab.LibreWolf.json | 37 |
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" ] } |