Move scripts, refactor.

This commit is contained in:
Martin Rotter 2016-08-24 12:30:11 +02:00
parent c973c1cbd6
commit 03b7bc0727
4 changed files with 17 additions and 6 deletions

View File

@ -14,13 +14,10 @@ git:
submodules: false
depth: 3
before_install: ./.travis-before-install.sh
before_install: ./resources/scripts/.travis-before-install.sh
install: true
script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then source /opt/qt57/bin/qt57-env.sh ; fi
- mkdir rssguard-build && cd rssguard-build
- qmake ..
- make
- make install
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./resources/scripts/.travis-install-linux.sh ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./resources/scripts/.travis-install-osx.sh ; fi

View File

@ -0,0 +1,7 @@
#!/bin/bash
source /opt/qt57/bin/qt57-env.sh
mkdir rssguard-build && cd rssguard-build
qmake ..
make
make install

View File

@ -0,0 +1,7 @@
#!/bin/sh
mkdir rssguard-build && cd rssguard-build
qmake ..
make
make install
macdeployqt rssguard.app -dmg