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