Skip to content
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
3 changes: 2 additions & 1 deletion flatpaker/actions/build_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
def _build_runtime(args: BaseBuildArguments, sdk: pathlib.Path,
need_platform_workaround: bool) -> None:
build_command: list[str] = [
'flatpak-builder', '--force-clean', '--user', 'build', sdk.as_posix()]
'flatpak-builder', '--force-clean', '--user',
'--install-deps-from=flathub', 'build', sdk.as_posix()]

if args.export:
build_command.extend(['--repo', args.repo])
Expand Down
35 changes: 18 additions & 17 deletions flatpaker/data/com.github.dcbaker.flatpaker.RPGM.Platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,22 @@ runtime-version: "24.08"
runtime: org.freedesktop.Platform
sdk: org.freedesktop.Sdk
inherit-extensions:
- "org.freedesktop.Platform.GL"
- "org.freedesktop.Platform.GL"
- "org.freedesktop.Platform.VAAPI.Intel"
modules:
- name: "nwjs"
buildsystem: "simple"
sources:
- type: "archive"
url: "https://dl.nwjs.io/v0.114.1/nwjs-v0.114.1-linux-x64.tar.gz"
sha256: "35e53de9b37edf8a0cd77068d74728bcd470ae6569f88a4a15b97d27647635db"
only_arches:
- x86_64
- type: "archive"
url: "https://dl.nwjs.io/v0.114.1/nwjs-v0.114.1-linux-arm64.tar.gz"
sha256: "40befc36553e189151a3d89481da2aa02b1d250df447f57020e142e1953090ff"
only_arches:
- aarch64
build-commands:
- "mkdir /usr/lib/nwjs"
- "mv * /usr/lib/nwjs/"
- name: "nwjs"
buildsystem: "simple"
sources:
- type: "archive"
url: "https://dl.nwjs.io/v0.114.1/nwjs-v0.114.1-linux-x64.tar.gz"
sha256: "35e53de9b37edf8a0cd77068d74728bcd470ae6569f88a4a15b97d27647635db"
only_arches:
- x86_64
- type: "archive"
url: "https://dl.nwjs.io/v0.114.1/nwjs-v0.114.1-linux-arm64.tar.gz"
sha256: "40befc36553e189151a3d89481da2aa02b1d250df447f57020e142e1953090ff"
only_arches:
- aarch64
build-commands:
- "mkdir /usr/lib/nwjs"
- "mv * /usr/lib/nwjs/"
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ runtime: org.freedesktop.Platform
sdk: org.freedesktop.Sdk
inherit-extensions:
- "org.freedesktop.Platform.GL"
- "org.freedesktop.Platform.VAAPI.Intel"
modules:
- "modules/renpy-shared.yml"
- "modules/python-2.7.json"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ runtime: org.freedesktop.Platform
sdk: org.freedesktop.Sdk
inherit-extensions:
- "org.freedesktop.Platform.GL"
- "org.freedesktop.Platform.VAAPI.Intel"
modules:
- "modules/renpy-shared.yml"
- "modules/python3-requirements.json"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ runtime: org.freedesktop.Platform
sdk: org.freedesktop.Sdk
inherit-extensions:
- "org.freedesktop.Platform.GL"
- "org.freedesktop.Platform.VAAPI.Intel"
modules:
- "modules/renpy-shared.yml"
- "modules/python3-requirements.json"
Expand Down
Loading