@@ -30,12 +30,12 @@ def clone_qgis(branch='master', delete_local_branches=False):
30
30
#run('git config --global push.default simple')
31
31
32
32
code_base = '%s/cpp' % env .fg .workspace
33
- code_path = '%s/Quantum-GIS ' % code_base
33
+ code_path = '%s/QGIS ' % code_base
34
34
35
35
update_git_checkout (
36
36
code_base ,
37
37
env .fg .qgis_git_url ,
38
- 'Quantum-GIS ' ,
38
+ 'QGIS ' ,
39
39
branch )
40
40
if exists (code_path ):
41
41
with cd (code_path ):
@@ -49,7 +49,7 @@ def compile_qgis(build_path, build_prefix, gdal_from_source=False):
49
49
50
50
:param build_path: Path to the cmake build dir that should be used. Path
51
51
must point to under the QGIS git checkout dir. e.g.
52
- Quantum-GIS /build-fabgis.
52
+ QGIS /build-fabgis.
53
53
:type build_path: str
54
54
55
55
:param build_prefix: Path where the QGIS binaries should be installed to.
@@ -119,7 +119,7 @@ def install_qgis1_8(gdal_from_source=False):
119
119
sudo ('apt-get build-dep -y qgis' )
120
120
clone_qgis (branch = 'release-1_8' )
121
121
workspace = '%s/cpp' % env .fg .workspace
122
- code_path = '%s/Quantum-GIS ' % workspace
122
+ code_path = '%s/QGIS ' % workspace
123
123
build_path = '%s/build-qgis18-fabgis' % code_path
124
124
build_prefix = '/usr/local/qgis-1.8'
125
125
compile_qgis (build_path , build_prefix , gdal_from_source )
@@ -149,7 +149,7 @@ def install_qgis2(gdal_from_source=False):
149
149
150
150
clone_qgis (branch = 'release-2_0' )
151
151
workspace = '%s/cpp' % env .fg .workspace
152
- code_path = '%s/Quantum-GIS ' % workspace
152
+ code_path = '%s/QGIS ' % workspace
153
153
build_path = '%s/build-qgis2-fabgis' % code_path
154
154
build_prefix = '/usr/local/qgis-2.0'
155
155
compile_qgis (build_path , build_prefix , gdal_from_source )
@@ -179,7 +179,7 @@ def install_master(gdal_from_source=False):
179
179
180
180
clone_qgis (branch = 'master' )
181
181
workspace = '%s/cpp' % env .fg .workspace
182
- code_path = '%s/Quantum-GIS ' % workspace
182
+ code_path = '%s/QGIS ' % workspace
183
183
build_path = '%s/build-master-fabgis' % code_path
184
184
build_prefix = '/usr/local/qgis-master'
185
185
compile_qgis (build_path , build_prefix , gdal_from_source )
0 commit comments