-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added small script to build the package only
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@14725 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
timlinux
committed
Nov 21, 2010
1 parent
e722ed8
commit 297b90a
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/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 \ | ||
-DVERSION_NUMBER='$major.$minor.$patch' \ | ||
-DVERSION_NAME='$release' \ | ||
-DSVN_REVISION='$revision' \ | ||
-DQGIS_BASE='Quantum GIS $release' \ | ||
-DINSTALLER_NAME='QGIS-OSGeo4W-1-6-0-Setup.exe' \ | ||
-DDISPLAYED_NAME='Quantum GIS 1.6.0' \ | ||
-DBINARY_REVISION=1 \ | ||
-DINSTALLER_TYPE=OSGeo4W \ | ||
-DPACKAGE_FOLDER=osgeo4w/unpacked \ | ||
QGIS-Installer.nsi |