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
7 changes: 7 additions & 0 deletions flatpak/flathub.preinstall
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This is for org.gnome.Epiphany and io.elementary.capnet-assist.
# Flatpak won't install the GL runtime alongside these apps because they're published
# in different repositories (see https://github.com/flatpak/flatpak/issues/3094 for details).
# So explicitly install here.
[Flatpak Preinstall org.freedesktop.Platform.GL.default]
Branch=24.08
IsRuntime=true
13 changes: 10 additions & 3 deletions flatpak/meson.build
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
subdir('remotes.d')

install_data(
preinstall_files = [
'appcenter.preinstall',
install_dir: datadir / 'flatpak' / 'preinstall.d'
)
'flathub.preinstall',
]

foreach file : preinstall_files
install_data(
file,
install_dir: datadir / 'flatpak' / 'preinstall.d'
)
endforeach

systemd_system_unit_dir = get_option('systemdsystemunitdir')
if systemd_system_unit_dir != 'no'
Expand Down