Changeset 2786 in osm for applications


Ignore:
Timestamp:
2007-05-06T17:16:24+02:00 (17 years ago)
Author:
ulf
Message:

slight enhancements of the build process,
the josm mappaint plugin doesn't need an elemstyles.xml file now

Location:
applications/nsis
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/nsis/README.txt

    r2601 r2786  
    33default preferences for Windows users.
    44
    5 Currently only josm is included in the installer. Probably, other osm related
    6 applications like osmarender and mapnik will be added later.
     5Currently only josm and a small assortment of josm plugins is included in the
     6installer. Probably, other osm related applications like osmarender and mapnik
     7will be added later.
    78
    89
  • applications/nsis/openstreetmap-setup.sh

    r2601 r2786  
    11#!/bin/sh
     2
     3## settings ##
     4
     5VERSION=0.0.6
     6
     7PROGRAM_FILES="/cygdrive/c/Program Files"
     8
     9LAUNCH4J_XML="C:\Dokumente und Einstellungen\ulfl\Eigene Dateien\proj\gps\osm\svn.openstreetmap.org\applications\nsis\launch4j.xml"
     10
    211
    312### download required files ###
     
    1120
    1221# 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
     22wget -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
    1525wget -nc http://www.eigenheimstrasse.de/josm/plugins/osmarender.jar
     26wget -nc http://www.eigenheimstrasse.de/josm/plugins/annotation-tester.jar
    1627wget -nc http://chippy2005.googlepages.com/wmsplugin.jar
    17 wget -nc http://www.eigenheimstrasse.de/josm/plugins/annotation-tester.jar
    1828
    1929cd ..
     
    2232# (makes attaching to file extensions a lot easier)
    2333# 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"
    2535
    2636### create the installer exe ###
    2737# NSIS - http://nsis.sourceforge.net/Main_Page
    28 "/cygdrive/c/Program Files/nsis/makensis.exe" openstreetmap.nsi
     38"$PROGRAM_FILES/nsis/makensis.exe" /DVERSION=$VERSION openstreetmap.nsi
  • applications/nsis/openstreetmap.nsi

    r2601 r2786  
    1414!include "INIStrNS.nsh"
    1515
    16 !define VERSION "0.0.5"
    1716!define DEST "openstreetmap"
    1817
     
    369368SetOutPath $APPDATA\JOSM\plugins
    370369File "downloads\mappaint.jar"
    371 SetOutPath $APPDATA\JOSM\plugins\mappaint
    372 File "downloads\elemstyles.xml"
     370;SetOutPath $APPDATA\JOSM\plugins\mappaint
     371;File "downloads\elemstyles.xml"
    373372SectionEnd
    374373
     
    457456Delete "$APPDATA\JOSM\plugins\osmarender\*.*"
    458457Delete "$APPDATA\JOSM\plugins\mappaint.jar"
    459 Delete "$APPDATA\JOSM\plugins\mappaint\elemstyles.xml"
     458;Delete "$APPDATA\JOSM\plugins\mappaint\elemstyles.xml"
    460459RMDir "$APPDATA\JOSM\plugins\osmarender"
    461 RMDir "$APPDATA\JOSM\plugins\mappaint"
     460;RMDir "$APPDATA\JOSM\plugins\mappaint"
    462461RMDir "$APPDATA\JOSM\plugins"
    463462RMDir "$APPDATA\JOSM"
Note: See TracChangeset for help on using the changeset viewer.