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

15 lines
431 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"
curl -o "linuxdeployqt" 'https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage'
2017-10-13 14:12:35 +02:00
chmod a+x "linuxdeployqt"
unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
2017-10-13 14:24:36 +02:00
./linuxdeployqt "./usr/bin/rssguard" -appimage
2017-10-13 14:10:13 +02:00
ls