rssguard/resources/scripts/.travis-install-linux.sh

16 lines
467 B
Bash
Raw Normal View History

2016-08-24 12:30:11 +02:00
#!/bin/bash
2017-09-22 06:56:52 +02:00
source /opt/qt59/bin/qt59-env.sh
2016-08-24 12:30:11 +02:00
mkdir rssguard-build && cd rssguard-build
2017-10-13 13:48:21 +02:00
qmake .. "$qmake_args"
2017-10-13 14:01:30 +02:00
make lrelease
2016-08-24 12:30:11 +02:00
make
2017-10-13 14:10:13 +02:00
make install
ls "./usr/bin"
2017-10-13 14:37:03 +02:00
wget -c https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage
chmod a+x linuxdeployqt-continuous-x86_64.AppImage
2017-10-13 14:12:35 +02:00
unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
2017-10-13 14:37:03 +02:00
./linuxdeployqt-continuous-x86_64.AppImage "./usr/bin/rssguard" -appimage
2017-10-13 14:10:13 +02:00
ls