Changeset 2786 in osm for applications
- Timestamp:
- 2007-05-06T17:16:24+02:00 (18 years ago)
- Location:
- applications/nsis
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/nsis/README.txt
r2601 r2786 3 3 default preferences for Windows users. 4 4 5 Currently only josm is included in the installer. Probably, other osm related 6 applications like osmarender and mapnik will be added later. 5 Currently only josm and a small assortment of josm plugins is included in the 6 installer. Probably, other osm related applications like osmarender and mapnik 7 will be added later. 7 8 8 9 -
applications/nsis/openstreetmap-setup.sh
r2601 r2786 1 1 #!/bin/sh 2 3 ## settings ## 4 5 VERSION=0.0.6 6 7 PROGRAM_FILES="/cygdrive/c/Program Files" 8 9 LAUNCH4J_XML="C:\Dokumente und Einstellungen\ulfl\Eigene Dateien\proj\gps\osm\svn.openstreetmap.org\applications\nsis\launch4j.xml" 10 2 11 3 12 ### download required files ### … … 11 20 12 21 # get latest plugin (and supporting files) versions 13 wget -nc http://www.free-map.org.uk/downloads/josm/mappaint.jar 14 wget -nc http://www.free-map.org.uk/downloads/josm/elemstyles.xml 22 wget -nc http://svn.openstreetmap.org/applications/editors/josm/plugins/mappaint/ 23 # wget -nc http://www.free-map.org.uk/downloads/josm/mappaint.jar 24 # wget -nc http://www.free-map.org.uk/downloads/josm/elemstyles.xml 15 25 wget -nc http://www.eigenheimstrasse.de/josm/plugins/osmarender.jar 26 wget -nc http://www.eigenheimstrasse.de/josm/plugins/annotation-tester.jar 16 27 wget -nc http://chippy2005.googlepages.com/wmsplugin.jar 17 wget -nc http://www.eigenheimstrasse.de/josm/plugins/annotation-tester.jar18 28 19 29 cd .. … … 22 32 # (makes attaching to file extensions a lot easier) 23 33 # launch4j - http://launch4j.sourceforge.net/ 24 " /cygdrive/c/Program Files/Launch4j/launch4jc.exe" "C:\Dokumente und Einstellungen\ulfl\Eigene Dateien\proj\gps\osm\nsis\launch4j.xml"34 "$PROGRAM_FILES/Launch4j/launch4jc.exe" "$LAUNCH4J_XML" 25 35 26 36 ### create the installer exe ### 27 37 # NSIS - http://nsis.sourceforge.net/Main_Page 28 " /cygdrive/c/Program Files/nsis/makensis.exe"openstreetmap.nsi38 "$PROGRAM_FILES/nsis/makensis.exe" /DVERSION=$VERSION openstreetmap.nsi -
applications/nsis/openstreetmap.nsi
r2601 r2786 14 14 !include "INIStrNS.nsh" 15 15 16 !define VERSION "0.0.5"17 16 !define DEST "openstreetmap" 18 17 … … 369 368 SetOutPath $APPDATA\JOSM\plugins 370 369 File "downloads\mappaint.jar" 371 SetOutPath $APPDATA\JOSM\plugins\mappaint372 File "downloads\elemstyles.xml"370 ;SetOutPath $APPDATA\JOSM\plugins\mappaint 371 ;File "downloads\elemstyles.xml" 373 372 SectionEnd 374 373 … … 457 456 Delete "$APPDATA\JOSM\plugins\osmarender\*.*" 458 457 Delete "$APPDATA\JOSM\plugins\mappaint.jar" 459 Delete "$APPDATA\JOSM\plugins\mappaint\elemstyles.xml"458 ;Delete "$APPDATA\JOSM\plugins\mappaint\elemstyles.xml" 460 459 RMDir "$APPDATA\JOSM\plugins\osmarender" 461 RMDir "$APPDATA\JOSM\plugins\mappaint"460 ;RMDir "$APPDATA\JOSM\plugins\mappaint" 462 461 RMDir "$APPDATA\JOSM\plugins" 463 462 RMDir "$APPDATA\JOSM"
Note:
See TracChangeset
for help on using the changeset viewer.