mirror of
https://github.com/RetroDECK/org.DolphinEmu.dolphin-emu.git
synced 2024-11-21 21:25:38 +00:00
Add comments
Sometimes I find it hard to keep track of why we need the different dependencies. I want to write a proper readme but I never have time, a few comments will help in the mean time.
This commit is contained in:
parent
05f92156c9
commit
1b03d69cdc
|
@ -9,15 +9,20 @@ rename-icon: dolphin-emu
|
||||||
rename-appdata-file: dolphin-emu.appdata.xml
|
rename-appdata-file: dolphin-emu.appdata.xml
|
||||||
finish-args:
|
finish-args:
|
||||||
- --device=all
|
- --device=all
|
||||||
|
# the file picker uses portals but the set
|
||||||
|
# game directory feature still needs this
|
||||||
- --filesystem=host:ro
|
- --filesystem=host:ro
|
||||||
- --socket=pulseaudio
|
- --socket=pulseaudio
|
||||||
- --socket=x11
|
- --socket=x11
|
||||||
- --share=network
|
- --share=network
|
||||||
- --share=ipc
|
- --share=ipc
|
||||||
|
# along with the bluez module, required for the
|
||||||
|
# emulated bluetooth adapter feature to work.
|
||||||
- --allow=bluetooth
|
- --allow=bluetooth
|
||||||
- --filesystem=xdg-run/app/com.discordapp.Discord:create
|
- --filesystem=xdg-run/app/com.discordapp.Discord:create
|
||||||
- --talk-name=org.freedesktop.ScreenSaver
|
- --talk-name=org.freedesktop.ScreenSaver
|
||||||
modules:
|
modules:
|
||||||
|
# needed for the bluetooth passthrough feature to work
|
||||||
- name: libusb
|
- name: libusb
|
||||||
config-opts:
|
config-opts:
|
||||||
- --disable-static
|
- --disable-static
|
||||||
|
@ -34,6 +39,7 @@ modules:
|
||||||
project-id: 1749
|
project-id: 1749
|
||||||
url-template: https://github.com/libusb/libusb/releases/download/v$version/libusb-$version.tar.bz2
|
url-template: https://github.com/libusb/libusb/releases/download/v$version/libusb-$version.tar.bz2
|
||||||
|
|
||||||
|
# needed for the emulate bluetooth adapter feature to work
|
||||||
- name: bluez
|
- name: bluez
|
||||||
config-opts:
|
config-opts:
|
||||||
- --enable-library
|
- --enable-library
|
||||||
|
@ -58,6 +64,7 @@ modules:
|
||||||
project-id: 10029
|
project-id: 10029
|
||||||
url-template: https://www.kernel.org/pub/linux/bluetooth/bluez-$version.tar.xz
|
url-template: https://www.kernel.org/pub/linux/bluetooth/bluez-$version.tar.xz
|
||||||
|
|
||||||
|
# needed for screensaver inhibition
|
||||||
- name: xdg-screensaver-shim
|
- name: xdg-screensaver-shim
|
||||||
buildsystem: meson
|
buildsystem: meson
|
||||||
sources:
|
sources:
|
||||||
|
@ -90,8 +97,12 @@ modules:
|
||||||
- type: git
|
- type: git
|
||||||
url: https://github.com/dolphin-emu/dolphin.git
|
url: https://github.com/dolphin-emu/dolphin.git
|
||||||
commit: acc7d3710d60552769f61f4b44bc8533a940df36
|
commit: acc7d3710d60552769f61f4b44bc8533a940df36
|
||||||
|
# prevents dolphin from attempting to write conf files
|
||||||
|
# in non-writable paths, typically happens when a user
|
||||||
|
# has leftover files from a previous non-flatpak install
|
||||||
- type: patch
|
- type: patch
|
||||||
path: forcexdg.patch
|
path: forcexdg.patch
|
||||||
|
# version strings must match exactly for online multiplayer
|
||||||
- type: patch
|
- type: patch
|
||||||
path: nodirtyversion.patch
|
path: nodirtyversion.patch
|
||||||
- type: file
|
- type: file
|
||||||
|
|
Loading…
Reference in a new issue