Skip to content

Commit 0ae802f

Browse files
author
timlinux
committedNov 21, 2010
Added small script to build the package only
git-svn-id: http://svn.osgeo.org/qgis/trunk@14725 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 6e11ab6 commit 0ae802f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
 

‎ms-windows/quickpackage.sh

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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

0 commit comments

Comments
 (0)
Please sign in to comment.