mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
43 lines
1.3 KiB
Bash
Executable file
43 lines
1.3 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
script_path=$(readlink -f "$0")
|
|
script_dir=$(dirname "$script_path")
|
|
chatterino_dir=$(dirname "$script_dir")
|
|
|
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/qt512/lib/
|
|
|
|
ldd ./bin/chatterino
|
|
make INSTALL_ROOT=appdir -j"$(nproc)" install ; find appdir/
|
|
cp "$chatterino_dir"/resources/icon.png ./appdir/chatterino.png
|
|
|
|
linuxdeployqt_path="linuxdeployqt-continuous-x86_64.AppImage"
|
|
linuxdeployqt_url="https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
|
|
|
|
if [ ! -f "$linuxdeployqt_path" ]; then
|
|
wget -nv "$linuxdeployqt_url"
|
|
chmod a+x "$linuxdeployqt_path"
|
|
fi
|
|
if [ ! -f appimagetool-x86_64.AppImage ]; then
|
|
wget -nv "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage"
|
|
chmod a+x appimagetool-x86_64.AppImage
|
|
fi
|
|
./"$linuxdeployqt_path" \
|
|
appdir/usr/share/applications/*.desktop \
|
|
-no-translations \
|
|
-bundle-non-qt-libs \
|
|
-unsupported-allow-new-glibc \
|
|
-qmake=/opt/qt512/bin/qmake
|
|
|
|
rm -rf appdir/home
|
|
rm appdir/AppRun
|
|
|
|
# shellcheck disable=SC2016
|
|
echo '#!/bin/sh
|
|
here="$(dirname "$(readlink -f "${0}")")"
|
|
export QT_QPA_PLATFORM_PLUGIN_PATH="$here/usr/plugins"
|
|
cd "$here/usr"
|
|
exec "$here/usr/bin/chatterino" "$@"' > appdir/AppRun
|
|
chmod a+x appdir/AppRun
|
|
|
|
./appimagetool-x86_64.AppImage appdir
|