]> sigrok.org Git - sigrok-util.git/blame - cross-compile/appimage/sigrok-native-appimage
sigrok-native-appimage: Drop hardcoded values, add i386 support.
[sigrok-util.git] / cross-compile / appimage / sigrok-native-appimage
CommitLineData
54207903 1#!/bin/bash
3d2ed47b
UH
2##
3## Copyright (C) 2016 Simon Peter
4## Copyright (C) 2017 Uwe Hermann <uwe@hermann-uwe.de>
5## This file is licensed under the terms of the MIT license.
6##
54207903 7
9118290a 8# Bundle PulseView and its dependencies as an AppImage for x86_64/i386 Linux.
3d2ed47b 9# Note: This assumes the full sigrok stack has been installed into $PREFIX.
54207903 10
3d2ed47b 11PREFIX=$HOME/sr
54207903 12
a8115a71
UH
13APPIMAGEKIT_OUTDIR=$HOME/AppImageKit/out
14
54207903 15ARCH=x86_64
16
90badf4c
UH
17PYVER=3.4
18
a8115a71
UH
19########################################################################
20# You usually don't have to change anything below this line
21########################################################################
22
3d2ed47b
UH
23APP=PulseView
24LOWERAPP=${APP,,}
25
a8115a71
UH
26export STATIC_FILES=`pwd`/contrib
27
28# Add $APPIMAGEKIT_OUTDIR so we can find all the binaries there.
29export PATH=$APPIMAGEKIT_OUTDIR:$PATH
30
3d2ed47b
UH
31A="./$APP/$APP.AppDir"
32mkdir -p $A/usr/bin $A/usr/lib $A/usr/share
54207903 33cd ./$APP
34
9cacd19e 35. $STATIC_FILES/functions.sh
54207903 36
37########################################################################
3d2ed47b 38# Get build products from $PREFIX
54207903 39########################################################################
40
54207903 41cd $APP.AppDir/
42
3d2ed47b 43cp $PREFIX/bin/pulseview usr/bin/
54207903 44chmod a+x usr/bin/*
3d2ed47b
UH
45cp $PREFIX/lib/lib*.so* usr/lib/
46cp -r $PREFIX/share/libsigrokdecode usr/share/
47cp -r $PREFIX/share/sigrok-firmware usr/share/
fe8f66a9
UH
48cp -r $PREFIX/share/applications usr/share/
49cp -r $PREFIX/share/icons usr/share/
50cp -r $PREFIX/share/metainfo usr/share/
51cp -r $PREFIX/share/mime usr/share/
54207903 52
53# Reduce binary size
54strip usr/bin/*
55strip usr/lib/*
56
57########################################################################
58# AppRun is the main launcher that gets executed when AppImage is run
59########################################################################
60
a8115a71 61cp $APPIMAGEKIT_OUTDIR/AppRun .
54207903 62
63########################################################################
64# Copy desktop and icon file to AppDir for AppRun to pick them up
65########################################################################
66
fe8f66a9
UH
67cp usr/share/applications/*.desktop .
68cp usr/share/icons/hicolor/48x48/apps/pulseview.png .
54207903 69
54207903 70########################################################################
71# Copy in the dependencies that cannot be assumed to be available
72# on all target systems
73########################################################################
74
54207903 75copy_deps
76
9b458ff9 77# Get all Qt5 plugins (won't be copied automatically).
9118290a 78QT5PLUGINS=/usr/lib/$ARCH-linux-gnu/qt5/plugins # Host (+ AppRun) path.
9b458ff9
UH
79mkdir -p .$QT5PLUGINS
80cp -r $QT5PLUGINS/accessible .$QT5PLUGINS
81cp -r $QT5PLUGINS/generic .$QT5PLUGINS
82cp -r $QT5PLUGINS/iconengines .$QT5PLUGINS
83cp -r $QT5PLUGINS/imageformats .$QT5PLUGINS
84cp -r $QT5PLUGINS/platforminputcontexts .$QT5PLUGINS
85cp -r $QT5PLUGINS/platforms .$QT5PLUGINS
86
6e8a37a4
UH
87# Get some additional dependencies of the Qt5 plugins.
88ldd .$QT5PLUGINS/platforms/libqxcb.so | grep "=>" | awk '{print $3}' | xargs -I '{}' cp -v '{}' ./usr/lib || true
89ldd .$QT5PLUGINS/imageformats/libqsvg.so | grep "=>" | awk '{print $3}' | xargs -I '{}' cp -v '{}' ./usr/lib || true
90
90badf4c 91# Python 3
9118290a 92cp /usr/lib/$ARCH-linux-gnu/libpython$PYVER* ./usr/lib
90badf4c
UH
93mkdir -p ./usr/share/pyshared
94cp -r /usr/lib/python$PYVER/* ./usr/share/pyshared # AppRun expects this path.
95
9118290a 96cp -r ./usr/share/pyshared/plat-$ARCH-linux-gnu/* ./usr/share/pyshared
90badf4c 97
54207903 98########################################################################
99# Delete stuff that should not go into the AppImage
100########################################################################
101
54207903 102move_lib
9118290a
UH
103mv ./usr/lib/$ARCH-linux-gnu/* usr/lib/
104rm -r ./usr/lib/$ARCH-linux-gnu/
54207903 105
e163385a
UH
106delete_blacklisted
107
3d2ed47b
UH
108# Remove some incorrectly/unintentionally copied files.
109rm -r ./home
110
54207903 111########################################################################
112# Determine the version of the app; also include needed glibc version
113########################################################################
114
3d2ed47b 115VER1="NIGHTLY"
54207903 116GLIBC_NEEDED=$(glibc_needed)
117VERSION=$VER1.glibc$GLIBC_NEEDED
118echo $VERSION
119
120########################################################################
121# Patch away absolute paths; it would be nice if they were relative
122########################################################################
123
8fa1956a 124find usr/ -type f -executable -exec sed -i -e "s|/usr|././|g" {} \;
54207903 125
126########################################################################
127# AppDir complete
128# Now packaging it as an AppImage
129########################################################################
130
131cd ..
132
837d376b
UH
133VERSION=$VERSION $APPIMAGEKIT_OUTDIR/appimagetool ./$APP.AppDir/
134mkdir -p ../out/ || true
135mv *.AppImage* ../out/