diff options
Diffstat (limited to 'flatpak')
| -rw-r--r-- | flatpak/com.fluorine.manager.yml | 10 | ||||
| -rwxr-xr-x | flatpak/flatpak-install.sh | 4 |
2 files changed, 10 insertions, 4 deletions
diff --git a/flatpak/com.fluorine.manager.yml b/flatpak/com.fluorine.manager.yml index 0265b90..834d8e9 100644 --- a/flatpak/com.fluorine.manager.yml +++ b/flatpak/com.fluorine.manager.yml @@ -13,7 +13,9 @@ finish-args: - --socket=wayland - --device=all - --filesystem=home - - --filesystem=/run/media:ro + - --filesystem=/mnt + - --filesystem=/media + - --filesystem=/run/media - --filesystem=~/.steam:ro - --filesystem=~/.local/share/Steam - --filesystem=~/.var/app/com.valvesoftware.Steam:ro @@ -292,6 +294,7 @@ modules: find _build/libs -type f \( \ -name "libgame_*.so" -o \ -name "libinstaller_*.so" -o \ + -name "libfomod_plus_*.so" -o \ -name "libpreview_*.so" -o \ -name "libdiagnose_*.so" -o \ -name "libcheck_*.so" -o \ @@ -305,7 +308,7 @@ modules: # Python plugin payload. - | - for f in libplugin_python.so lzokay.py winreg.py pyCfg.py \ + for f in libplugin_python.so lzokay.py winreg.py \ DDSPreview.py Form43Checker.py ScriptExtenderPluginChecker.py; do [ -f "_build/src/src/plugins/${f}" ] && cp -f "_build/src/src/plugins/${f}" /app/lib/fluorine/plugins/ done @@ -320,6 +323,9 @@ modules: [ -f "${f}" ] && cp -f "${f}" /app/lib/fluorine/plugins/ done + # Stylesheets / themes. + - cp -a src/src/stylesheets /app/lib/fluorine/stylesheets + # 7z runtime. - | if [ -f _build/src/src/dlls/7z.so ]; then diff --git a/flatpak/flatpak-install.sh b/flatpak/flatpak-install.sh index f5cdfda..53c0645 100755 --- a/flatpak/flatpak-install.sh +++ b/flatpak/flatpak-install.sh @@ -32,7 +32,7 @@ if [ "${MODE}" = "bundle" ]; then # ── Build a distributable .flatpak file ── echo "" echo "Building Flatpak bundle (this may take a while)..." - flatpak-builder --repo="${PROJECT_DIR}/flatpak-repo" --force-clean \ + flatpak-builder --repo="${PROJECT_DIR}/flatpak-repo" --force-clean --ccache \ "${BUILD_DIR}" "${MANIFEST}" flatpak build-bundle \ --runtime-repo=https://flathub.org/repo/flathub.flatpakrepo \ @@ -47,7 +47,7 @@ else # ── Build and install locally ── echo "" echo "Building and installing Flatpak locally (this may take a while)..." - flatpak-builder --install --user --force-clean \ + flatpak-builder --install --user --force-clean --ccache \ "${BUILD_DIR}" "${MANIFEST}" echo "" echo "=== Flatpak installed successfully ===" |
