forked from mcallegari/qlcplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
create-appimage-cmake.sh
executable file
·75 lines (59 loc) · 2.29 KB
/
create-appimage-cmake.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#!/bin/bash
#
# Script to create a self contained AppImage using CMake
# Requires wget and chrpath
# If you want to use the official Qt packages, please export QTDIR before running this, like:
# export QTDIR=/home/user/Qt/5.15.2/gcc_64
# Or you can use the system Qt libraries instead by not specifying QTDIR.
# Exit on error
set -e
TARGET_DIR=$HOME/qlcplus.AppDir
# Compile translations
./translate.sh "qmlui"
# Build
if [ -d build ]; then
rm -rf build
fi
mkdir build
cd build
if [ -n "$QTDIR" ]; then
cmake -DCMAKE_PREFIX_PATH="$QTDIR/lib/cmake/" -Dqmlui=ON -Dappimage=ON -DINSTALL_ROOT=$TARGET_DIR ..
else
cmake -DCMAKE_PREFIX_PATH="/usr/lib/x86_64-linux-gnu/cmake/Qt5" -Dqmlui=ON -Dappimage=ON -DINSTALL_ROOT=$TARGET_DIR ..
fi
NUM_CPUS=$(nproc) || true
if [ -z "$NUM_CPUS" ]; then
NUM_CPUS=8
fi
make -j$NUM_CPUS
make check
if [ ! -d "$TARGET_DIR" ]; then
mkdir $TARGET_DIR
fi
make install
strip $TARGET_DIR/usr/bin/qlcplus-qml
# see variables.pri, where to find the LIBSDIR
find $TARGET_DIR/usr/lib/ -name 'libqlcplusengine.so*' -exec strip -v {} \;
# FIXME: no rpath or runpath tag found.
chrpath -r "../lib" $TARGET_DIR/usr/bin/qlcplus-qml || true
pushd $TARGET_DIR/usr/bin
find . -name plugins.qmltypes -type f -delete
find . -name *.qmlc -type f -delete
rm -rf QtQuick/Extras QtQuick/Particles.2 QtQuick/XmlListModel
rm -rf QtQuick/Controls.2/designer QtQuick/Controls.2/Material
rm -rf QtQuick/Controls.2/Universal QtQuick/Controls.2/Fusion
rm -rf QtQuick/Controls.2/Imagine QtQuick/Controls.2/Scene2D
popd
# There might be a new version of the tool available.
wget -c https://github.com/AppImage/AppImageKit/releases/download/continuous/AppRun-x86_64 -O $TARGET_DIR/AppRun
chmod a+x $TARGET_DIR/AppRun
cp -v ../resources/icons/svg/qlcplus.svg $TARGET_DIR
cp -v ../platforms/linux/qlcplus.desktop $TARGET_DIR
sed -i -e 's/Exec=qlcplus --open %f/Exec=qlcplus-qml/g' $TARGET_DIR/qlcplus.desktop
# There might be a new version of the tool available.
wget -c https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -O /tmp/appimagetool-x86_64.AppImage
chmod a+x /tmp/appimagetool-x86_64.AppImage
pushd $TARGET_DIR/..
/tmp/appimagetool-x86_64.AppImage -v $TARGET_DIR
popd
echo "The application is now available at ~/Q_Light_Controller_Plus-x86_64.AppImage"