File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # This script is just for if you want to run the nsis (under linux) part
4
+ # of the package building process. Typically you should use
5
+ #
6
+ # osgeo4w/creatensis.pl
7
+ #
8
+ # rather to do the complete package build process. However running this
9
+ # script can be useful if you have manually tweaked the package contents
10
+ # under osgeo4w/unpacked and want to create a new package based on that.
11
+ #
12
+ # Tim Sutton November 2010
13
+
14
+ makensis \
15
+ -DVERSION_NUMBER=' $major.$minor.$patch' \
16
+ -DVERSION_NAME=' $release' \
17
+ -DSVN_REVISION=' $revision' \
18
+ -DQGIS_BASE=' Quantum GIS $release' \
19
+ -DINSTALLER_NAME=' QGIS-OSGeo4W-1-6-0-Setup.exe' \
20
+ -DDISPLAYED_NAME=' Quantum GIS 1.6.0' \
21
+ -DBINARY_REVISION=1 \
22
+ -DINSTALLER_TYPE=OSGeo4W \
23
+ -DPACKAGE_FOLDER=osgeo4w/unpacked \
24
+ QGIS-Installer.nsi
You can’t perform that action at this time.
0 commit comments