diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-08-02 18:53:52 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-08-02 18:53:52 -0700 |
commit | 2b9523dcff372dbc4a877c14f2a0ece32ae57959 (patch) | |
tree | 8afa1259e5953a8e7ef321598d81069b6f5e50dd /scripts/build.sh | |
parent | bc1a3889528df1235d1facfe99ebf8b167a06ef5 (diff) | |
parent | e05abca7e03953df77bdb46d225c853fe73f55f7 (diff) | |
download | subsurface-2b9523dcff372dbc4a877c14f2a0ece32ae57959.tar.gz |
Merge branch 'googlemaps' of git://github.com/neolit123/subsurface into googlemaps
Diffstat (limited to 'scripts/build.sh')
-rwxr-xr-x | scripts/build.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index 945673bf8..a5c1f0fff 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -429,7 +429,22 @@ else fi +# build the googlemaps map plugin +cd $SRC +if [ ! -d googlemaps ] ; then + if [[ $1 = local ]] ; then + git clone $SRC/../googlemaps googlemaps + else + git clone git@github.com:Subsurface-divelog/googlemaps.git + fi +fi +cd googlemaps +git checkout master +git pull --rebase +qmake +make -j4 +make install # finally, build Subsurface |