mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
504 B
20 lines
504 B
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
mkdir -p appdir
|
|
cp build/nheko appdir/
|
|
cp resources/nheko.desktop appdir/
|
|
cp resources/nheko*.png appdir/
|
|
|
|
wget -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
|
|
chmod a+x linuxdeployqt*.AppImage
|
|
|
|
unset QTDIR
|
|
unset QT_PLUGIN_PATH
|
|
unset LD_LIBRARY_PATH
|
|
|
|
./linuxdeployqt*.AppImage ./appdir/*.desktop -bundle-non-qt-libs
|
|
./linuxdeployqt*.AppImage ./appdir/*.desktop -appimage
|
|
|
|
chmod +x nheko-x86_64.AppImage
|
|
|