Skip to content

Commit

Permalink
Working Flatpak Building
Browse files Browse the repository at this point in the history
Install using `flatpak-builder build com.hackclub.burrow.json --install --force-clean --user`
Run using `flatpak run com.hackclub.burrow`
  • Loading branch information
davnotdev committed Nov 18, 2023
1 parent c71c337 commit 02e84fe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions burrow-gtk/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.flatpak-builder
5 changes: 4 additions & 1 deletion burrow-gtk/com.hackclub.burrow.devel.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@
"builddir" : true,
"subdir" : "burrow-gtk",
"buildsystem" : "simple",
"build-commands": ["cargo build"],
"build-commands": [
"cargo build",
"install -Dm755 -t /app/bin target/debug/burrow-gtk"
],
"sources" : [
{
"type": "dir",
Expand Down
2 changes: 1 addition & 1 deletion burrow-gtk/com.hackclub.burrow.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"buildsystem" : "simple",
"build-commands": [
"cargo build --release",
"cp target/release/burrow-gtk /app/bin"
"install -Dm755 -t /app/bin target/release/burrow-gtk"
],
"sources" : [
{
Expand Down

0 comments on commit 02e84fe

Please sign in to comment.