Mercurial > hg > sonic-visualiser
view deploy/linux/deploy-appimage.sh @ 2049:fd4976627485
Fix inconsistency between centre frame actually set and centre frame notified as set, which caused the start frame location to creep out of place gradually as you page through
author | Chris Cannam |
---|---|
date | Tue, 30 Oct 2018 14:00:39 +0000 |
parents | 4a1b7b175807 |
children | c0afaca5a029 |
line wrap: on
line source
#!/bin/bash set -eu program=sonic-visualiser checker=vamp-plugin-load-checker piper=piper-vamp-simple-server get_id() { if [ -d .hg ]; then hg id | sed 's/[+ ].*$//' elif [ -d .git ]; then git rev-parse --short HEAD else echo "WARNING: can't figure out revision from VCS metadata" 1>&2 echo "unknown" fi } version=$(get_id) targetdir="${program}.AppDir" echo "Target dir is $targetdir" if [ -d "$targetdir" ]; then echo "Target directory exists, not overwriting" exit fi mkdir "$targetdir" mkdir -p "$targetdir"/usr/bin mkdir -p "$targetdir"/usr/lib cp "$program" "$checker" "$piper" "$targetdir"/usr/bin/ ldd /usr/lib/x86_64-linux-gnu/libpulse.so.0 || true add_dependencies() { local binary="$1" echo "ldd $binary yields:" ldd "$binary" for lib in $(ldd "$binary" | grep '=> [^ ]*/lib/' | \ sed 's/^.*=> //' | sed 's/ .*$//'); do base=$(basename "$lib") if grep -v '^#' sv-dependency-builds/linux/appimage/excludelist | grep -q "^$base$" ; then echo "excluding: $lib" continue fi target="$targetdir/usr/lib/$(basename $lib)" mkdir -p "$(dirname $target)" if [ ! -f "$target" ]; then cp -Lv "$lib" "$target" chmod +x "$target" add_dependencies "$lib" fi done } add_dependencies "$program" add_dependencies "$checker" add_dependencies "$piper" qtplugins="gif icns ico jpeg tga tiff wbmp webp cocoa minimal offscreen xcb" qtlibdirs="/usr/lib/x86_64-linux-gnu/qt5 /usr/lib/x86_64-linux-gnu/qt /usr/lib/qt5 /usr/lib/qt" QTDIR=${QTDIR:-} if [ -n "$QTDIR" ]; then qtlibdirs="$QTDIR $qtlibdirs" fi for plug in $qtplugins; do for libdir in $qtlibdirs; do lib=$(find $libdir/plugins -name libq$plug.so -print 2>/dev/null || true) if [ -n "$lib" ]; then if [ -f "$lib" ]; then subdir=$(basename $(dirname $lib)) if [ t"$subdir" = t"plugins" ]; then subdir="" fi target="$targetdir/usr/lib/qt5/plugins/$subdir/$(basename $lib)" mkdir -p "$(dirname $target)" cp -v "$lib" "$target" chmod +x "$target" add_dependencies "$lib" break fi fi done done cp "$program.desktop" "$targetdir/" cp "icons/sv-icon.svg" "$targetdir/" cp "icons/sonic-visualiser.svg" "$targetdir/" cp sv-dependency-builds/linux/appimage/AppRun-x86_64 "$targetdir/AppRun" chmod +x "$targetdir/AppRun" # Do this with a separate extraction step, so as to make it work even # in situations where FUSE is unavailable like in a Docker container export ARCH=x86_64 sv-dependency-builds/linux/appimage/appimagetool-x86_64.AppImage --appimage-extract ./squashfs-root/AppRun "$targetdir" "SonicVisualiser-$version-x86_64.AppImage"