Skip to content

Commit 7fef85f

Browse files
committed
Simplify sharun lib4bin configuration
- Remove unnecessary environment variables (DST_DIR, GEN_LIB_PATH, etc.) - Use direct command line arguments --hard-links -d ./AppDir - Cleaner approach: let sharun lib4bin use its default settings - Keep minimal configuration for testing
1 parent 18934ef commit 7fef85f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

scripts/make-appimage.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,15 @@ export ADD_HOOKS="self-updater.bg.hook:fix-namespaces.hook"
1010
export UPINFO="gh-releases-zsync|${GITHUB_REPOSITORY%/*}|${GITHUB_REPOSITORY#*/}|latest|*$ARCH.AppImage.zsync"
1111

1212
# Télécharger sharun
13+
echo "Téléchargement de sharun..."
1314
curl -s https://github.com/VHSgunzo/sharun/releases/latest/download/sharun-x86_64-aio -o /tmp/sharun-aio
1415
chmod +x /tmp/sharun-aio
15-
# Utiliser sharun lib4bin pour compatibilité musl sans déploiement de bibliothèques
16-
/tmp/sharun-aio lib4bin --hard-links --dst-dir ./AppDir ./AppDir/bin/am-gui
16+
echo "Sharun téléchargé, exécution de lib4bin..."
17+
18+
19+
# Utiliser sharun l (lib4bin) pour compatibilité musl sans déploiement de bibliothèques
20+
/tmp/sharun-aio l --hard-links -d ./AppDir ./AppDir/bin/am-gui
21+
echo "Lib4bin terminé"
1722

1823
# Additional changes can be done in between here
1924

0 commit comments

Comments
 (0)