Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to use 23.08 runtime #20

Merged
merged 2 commits into from
Sep 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This is just a Makefile to simplify running some of the commands mentioned in the README.

build:
flatpak-builder --user --force-clean build-dir io.github.jacalz.rymdport.yml

install:
flatpak-builder --user --install --force-clean build-dir io.github.jacalz.rymdport.yml

run:
flatpak run --user io.github.jacalz.rymdport
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Building the package locally requires `flatpak-builder` to be installed. Install

Assuming that flathub already is added as a remote, the required SDKs have to be downloaded:
```
flatpak install flathub org.freedesktop.Platform//22.08 org.freedesktop.Sdk//22.08 org.freedesktop.Sdk.Extension.golang//22.08
flatpak install flathub org.freedesktop.Platform//23.08 org.freedesktop.Sdk//23.08 org.freedesktop.Sdk.Extension.golang//23.08
```

The next step is to build and install the package:
Expand Down
2 changes: 1 addition & 1 deletion io.github.jacalz.rymdport.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
app-id: io.github.jacalz.rymdport
runtime: org.freedesktop.Platform
runtime-version: '22.08'
runtime-version: '23.08'
sdk: org.freedesktop.Sdk
sdk-extensions:
- org.freedesktop.Sdk.Extension.golang
Expand Down