From a2e99173997798dad29b7dbda140ab1e79da30de Mon Sep 17 00:00:00 2001 From: Arran Ubels Date: Wed, 19 Jun 2024 15:40:02 +1000 Subject: [PATCH] `.so.1` to `.so` fix as per https://github.com/kodjodevf/mangayomi/issues/190 --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 62a17bd..1e9e38d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -293,7 +293,10 @@ jobs: mv appimagetool-x86_64.AppImage appimagetool flutter build linux --release - + + patchelf --replace-needed libmpv.so.1 libmpv.so build/linux/x64/release/bundle/lib/libmedia_kit_video_plugin.so + patchelf --replace-needed libmpv.so.1 libmpv.so build/linux/x64/release/bundle/lib/libmedia_kit_native_event_loop.so + mv build/linux/x64/release/bundle/{mangayomi,AppRun} cp linux/appimage/* build/linux/x64/release/bundle/ ./appimagetool build/linux/x64/release/bundle/ @@ -307,4 +310,4 @@ jobs: uses: ncipollo/release-action@v1 with: artifacts: build/Mangayomi-*.AppImage - allowUpdates: true \ No newline at end of file + allowUpdates: true