X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-util.git;a=blobdiff_plain;f=cross-compile%2Fappimage%2Fsigrok-native-appimage;h=d4dc1914ae63bb4917a553d18392a63e2abd340c;hp=71f81955664e45c4cf3ca3d1ede2672fc0a25281;hb=8c7df9803dc795e641525b24f030281bd5a00198;hpb=837d376bd191ce07364b5bafb91a47f70330a10c;ds=sidebyside diff --git a/cross-compile/appimage/sigrok-native-appimage b/cross-compile/appimage/sigrok-native-appimage index 71f8195..d4dc191 100755 --- a/cross-compile/appimage/sigrok-native-appimage +++ b/cross-compile/appimage/sigrok-native-appimage @@ -5,15 +5,18 @@ ## This file is licensed under the terms of the MIT license. ## -# Bundle PulseView and its dependencies as an AppImage for x86_64 Linux. +# Bundle PulseView and its dependencies as an AppImage for x86_64/i386 Linux. # Note: This assumes the full sigrok stack has been installed into $PREFIX. PREFIX=$HOME/sr APPIMAGEKIT_OUTDIR=$HOME/AppImageKit/out +# ARCH=i386 ARCH=x86_64 +PYVER=3.4 + ######################################################################## # You usually don't have to change anything below this line ######################################################################## @@ -30,7 +33,7 @@ A="./$APP/$APP.AppDir" mkdir -p $A/usr/bin $A/usr/lib $A/usr/share cd ./$APP -. ../contrib/functions.sh +. $STATIC_FILES/functions.sh ######################################################################## # Get build products from $PREFIX @@ -43,6 +46,10 @@ chmod a+x usr/bin/* cp $PREFIX/lib/lib*.so* usr/lib/ cp -r $PREFIX/share/libsigrokdecode usr/share/ cp -r $PREFIX/share/sigrok-firmware usr/share/ +cp -r $PREFIX/share/applications usr/share/ +cp -r $PREFIX/share/icons usr/share/ +cp -r $PREFIX/share/metainfo usr/share/ +cp -r $PREFIX/share/mime usr/share/ # Reduce binary size strip usr/bin/* @@ -58,7 +65,8 @@ cp $APPIMAGEKIT_OUTDIR/AppRun . # Copy desktop and icon file to AppDir for AppRun to pick them up ######################################################################## -cp ../../contrib/pulseview.desktop ../../contrib/sigrok-logo-notext.png . +cp usr/share/applications/*.desktop . +cp usr/share/icons/hicolor/48x48/apps/pulseview.png . ######################################################################## # Copy in the dependencies that cannot be assumed to be available @@ -67,14 +75,36 @@ cp ../../contrib/pulseview.desktop ../../contrib/sigrok-logo-notext.png . copy_deps +# Get all Qt5 plugins (won't be copied automatically). +QT5PLUGINS=/usr/lib/$ARCH-linux-gnu/qt5/plugins # Host (+ AppRun) path. +mkdir -p .$QT5PLUGINS +cp -r $QT5PLUGINS/accessible .$QT5PLUGINS +cp -r $QT5PLUGINS/generic .$QT5PLUGINS +cp -r $QT5PLUGINS/iconengines .$QT5PLUGINS +cp -r $QT5PLUGINS/imageformats .$QT5PLUGINS +cp -r $QT5PLUGINS/platforminputcontexts .$QT5PLUGINS +cp -r $QT5PLUGINS/platforms .$QT5PLUGINS + +# Get some additional dependencies of the Qt5 plugins. +ldd .$QT5PLUGINS/platforms/libqxcb.so | grep "=>" | awk '{print $3}' | xargs -I '{}' cp -v '{}' ./usr/lib || true +ldd .$QT5PLUGINS/imageformats/libqsvg.so | grep "=>" | awk '{print $3}' | xargs -I '{}' cp -v '{}' ./usr/lib || true + +# Python 3 +cp /usr/lib/$ARCH-linux-gnu/libpython$PYVER* ./usr/lib +mkdir -p ./usr/share/pyshared +cp -r /usr/lib/python$PYVER/* ./usr/share/pyshared # AppRun expects this path. + +cp -r ./usr/share/pyshared/plat-$ARCH-linux-gnu/* ./usr/share/pyshared + ######################################################################## # Delete stuff that should not go into the AppImage ######################################################################## -delete_blacklisted move_lib -mv ./usr/lib/x86_64-linux-gnu/* usr/lib/ -rm -r ./usr/lib/x86_64-linux-gnu/ +mv ./usr/lib/$ARCH-linux-gnu/* usr/lib/ +rm -r ./usr/lib/$ARCH-linux-gnu/ + +delete_blacklisted # Remove some incorrectly/unintentionally copied files. rm -r ./home @@ -83,16 +113,15 @@ rm -r ./home # Determine the version of the app; also include needed glibc version ######################################################################## -VER1="NIGHTLY" GLIBC_NEEDED=$(glibc_needed) -VERSION=$VER1.glibc$GLIBC_NEEDED +VERSION="NIGHTLY.glibc$GLIBC_NEEDED" echo $VERSION ######################################################################## # Patch away absolute paths; it would be nice if they were relative ######################################################################## -patch_usr +find usr/ -type f -executable -exec sed -i -e "s|/usr|././|g" {} \; ######################################################################## # AppDir complete