chore: sync flatpak manifest with flathub repo

This commit is contained in:
Ilya Zlobintsev
2025-04-11 18:37:11 +03:00
parent ffde17c175
commit da4f4b5adb
2 changed files with 4 additions and 3 deletions
+3 -2
View File
@@ -16,7 +16,7 @@ finish-args:
cleanup:
- /include
- /share/vulkan/registry
- /lib/*.a
- "*.a"
- /lib/pkgconfig
modules:
- name: lact
@@ -39,7 +39,7 @@ modules:
- cargo --offline build -p lact --features flatpak --release
- make install
- install -Dm755 flatpak/startup.sh /app/bin/startup.sh
- sed -i -E 's/lact gui/startup.sh/' /app/share/applications/io.github.ilya_zlobintsev.LACT.desktop
- desktop-file-edit --set-key Exec --set-value startup.sh /app/share/applications/io.github.ilya_zlobintsev.LACT.desktop
modules:
- name: yad
config-opts:
@@ -73,6 +73,7 @@ modules:
builddir: true
config-opts:
- -Dtests=false
- --libdir=/app/drm/lib
sources:
- type: archive
url: https://gitlab.freedesktop.org/mesa/drm/-/archive/libdrm-2.4.124/drm-libdrm-2.4.124.tar.gz
+1 -1
View File
@@ -36,7 +36,7 @@ fn generate_daemon_cmd(info: &Ini) -> anyhow::Result<()> {
.display()
);
let app_bin_path = format!("{app_path}/bin");
let library_paths = format!("{app_path}/lib:{runtime_lib_path}");
let library_paths = format!("{app_path}/lib:{app_path}/drm/lib:{runtime_lib_path}");
println!("{ld_path} --library-path {library_paths} {app_bin_path}/lact daemon");