##// END OF EJS Templates
Fixed typo in plugin path...
Fixed typo in plugin path Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1400:a2e833b5bccf
r1400:a2e833b5bccf
Show More
appImage.sh
10 lines | 465 B | application/x-sh | BashLexer
Added AppImage build support for linux...
r1391 #!/bin/bash
mkdir build
cd build
meson --prefix=/usr ..
ninja
DESTDIR=AppDir ninja install
Tinny AppImage fix...
r1394 mv AppDir/usr/lib64 AppDir/usr/lib
Switched to linuxdeployqt tool for AppImage build (tested on centos 7 with devtoolset-7 and Qt 5.11)...
r1393 wget https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage
chmod +x linuxdeployqt-continuous-x86_64.AppImage && ./linuxdeployqt-continuous-x86_64.AppImage --appimage-extract
Fixed typo in plugin path...
r1400 LD_LIBRARY_PATH=AppDir/usr/lib/ ./squashfs-root/AppRun AppDir/usr/share/applications/*.desktop -appimage