Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Commit

Permalink
feat: working Flatpak manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton committed Sep 3, 2023
1 parent 3e3aab8 commit 039ca68
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ subprojects/blueprint-compiler

# Flatpak related
/.flatpak
/.flatpak-builder
8 changes: 5 additions & 3 deletions com.fyralabs.SkiffDesktop.Devel.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"sdk-extensions": ["org.freedesktop.Sdk.Extension.vala"],
"desktop-file-name-suffix": " (Development)",
"command": "com.fyralabs.SkiffDesktop",
"finish-args": ["--socket=wayland", "--socket=fallback-x11", "--share=ipc", "--device=dri"],
"finish-args": ["--socket=wayland", "--socket=fallback-x11", "--share=ipc", "--device=dri", "--share=network"],
"build-options": {
"append-path": "/usr/lib/sdk/vala/bin",
"prepend-ld-library-path": "/usr/lib/sdk/vala/lib"
Expand All @@ -28,15 +28,17 @@
],
"modules": [
{
"name": "vala-template",
"name": "com.fyralabs.SkiffDesktop",
"builddir": true,
"buildsystem": "meson",
"config-opts": ["-Ddevelopment=true"],
"sources": [
{
"type": "dir",
"path": "."
},
}
],
"modules": [
{
"name": "blueprint-compiler",
"buildsystem": "meson",
Expand Down
10 changes: 7 additions & 3 deletions com.fyralabs.SkiffDesktop.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
"runtime": "com.fyralabs.Platform",
"runtime-version": "stable",
"sdk": "com.fyralabs.Sdk",
"finish-args": ["--socket=wayland", "--socket=fallback-x11", "--share=ipc", "--device=dri"],
"sdk-extensions": ["org.freedesktop.Sdk.Extension.vala"],
"command": "com.fyralabs.SkiffDesktop",
"finish-args": ["--socket=wayland", "--socket=fallback-x11", "--share=ipc", "--device=dri", "--share=network"],
"cleanup": [
"/cache",
"/man",
Expand All @@ -21,15 +23,17 @@
],
"modules": [
{
"name": "vala-template",
"name": "com.fyralabs.SkiffDesktop",
"builddir": true,
"buildsystem": "meson",
"config-opts": ["-Ddevelopment=false"],
"sources": [
{
"type": "dir",
"path": "."
},
}
],
"modules": [
{
"name": "blueprint-compiler",
"buildsystem": "meson",
Expand Down

0 comments on commit 039ca68

Please sign in to comment.