2010-11-21 10:35:58 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# This script is just for if you want to run the nsis (under linux) part
|
|
|
|
# of the package building process. Typically you should use
|
|
|
|
#
|
|
|
|
# osgeo4w/creatensis.pl
|
|
|
|
#
|
|
|
|
# rather to do the complete package build process. However running this
|
|
|
|
# script can be useful if you have manually tweaked the package contents
|
|
|
|
# under osgeo4w/unpacked and want to create a new package based on that.
|
|
|
|
#
|
|
|
|
# Tim Sutton November 2010
|
|
|
|
|
|
|
|
makensis \
|
2010-11-21 10:36:15 +00:00
|
|
|
-DVERSION_NUMBER='1.6.0' \
|
|
|
|
-DVERSION_NAME='Capiapo' \
|
|
|
|
-DSVN_REVISION='0' \
|
2010-11-21 10:35:58 +00:00
|
|
|
-DQGIS_BASE='Quantum GIS $release' \
|
2010-11-21 10:36:15 +00:00
|
|
|
-DINSTALLER_NAME='QGIS-1-6-0-Setup.exe' \
|
2010-11-21 10:35:58 +00:00
|
|
|
-DDISPLAYED_NAME='Quantum GIS 1.6.0' \
|
|
|
|
-DBINARY_REVISION=1 \
|
|
|
|
-DINSTALLER_TYPE=OSGeo4W \
|
|
|
|
-DPACKAGE_FOLDER=osgeo4w/unpacked \
|
|
|
|
QGIS-Installer.nsi
|