aboutsummaryrefslogtreecommitdiff
path: root/browser/resources
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-06-20 04:45:28 -0500
committerBeatLink <beatlink@protonmail.com>2019-06-20 04:45:28 -0500
commitbf4ba434f53aad9f517eab59b414db66859da031 (patch)
tree36e5ddb4172e7f0454d99edcb6e704bf32fa0015 /browser/resources
parentAdd option to enable alsa build (diff)
downloadlibrewolf-linux-bf4ba434f53aad9f517eab59b414db66859da031.tar.gz
librewolf-linux-bf4ba434f53aad9f517eab59b414db66859da031.tar.bz2
librewolf-linux-bf4ba434f53aad9f517eab59b414db66859da031.zip
Add files for preliminary work on flatpak
Diffstat (limited to 'browser/resources')
-rw-r--r--browser/resources/flatpak/io.gitlab.librewolf-community32
1 files changed, 32 insertions, 0 deletions
diff --git a/browser/resources/flatpak/io.gitlab.librewolf-community b/browser/resources/flatpak/io.gitlab.librewolf-community
new file mode 100644
index 0000000..55cf8b2
--- /dev/null
+++ b/browser/resources/flatpak/io.gitlab.librewolf-community
@@ -0,0 +1,32 @@
+{
+ "app-id": "io.gitlab.LibreWolf",
+ "runtime": "org.gnome.Platform",
+ "runtime-version": "3.22",
+ "sdk": "org.gnome.Sdk",
+ "command": "librewolf",
+ "finish-args": [
+ /* X11 + XShm access */
+ "--share=ipc", "--socket=x11",
+ /* Wayland access */
+ "--socket=wayland",
+ /* We want full fs access so we can read the files */
+ "--filesystem=home:rw",
+ /* Needs to talk to the network: */
+ "--share=network"
+ ],
+ "modules": [
+ {
+ "name": "librewolf",
+ "buildsystem": "simple",
+ "build-commands": [
+ "install -D hello.sh /app/bin/hello.sh"
+ ],
+ "sources": [
+ {
+ "type": "file",
+ "path": "hello.sh"
+ }
+ ]
+ }
+ ]
+}
bgstack15