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