Changeset 14189 in osm for applications/editors/josm
- Timestamp:
- 2009-03-21T13:58:03+01:00 (16 years ago)
- Location:
- applications/editors/josm/nsis
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/nsis/josm-setup-unix.sh
r14186 r14189 14 14 15 15 ## settings ## 16 LAUNCH4J="java -jar /usr/share/launch4j/launch4j.jar" 17 MAKENSIS=makensis 16 17 if [ -s /cygdrive/c/Programme/Launch4j/launch4jc.exe ]; then 18 echo Using paths: "C:\Programme\..." 19 LAUNCH4J="/cygdrive/c/Programme/Launch4j/launch4jc.exe" 20 MAKENSIS="/cygdrive/c/Programme/nsis/makensis.exe" 21 elif [ -s josm.exe ]; then 22 echo Using UNIX-like paths 23 LAUNCH4J="java -jar /usr/share/launch4j/launch4j.jar" 24 MAKENSIS=makensis 25 fi 26 18 27 19 28 svncorerevision=`svnversion ../core` … … 26 35 echo "Creating Windows Installer for josm-$VERSION" 27 36 28 ################################################################## 29 ### Build the Complete josm + Plugin Stuff 37 echo 38 echo "##################################################################" 39 echo "### Download and unzip the webkit stuff" 40 wget -nc http://josm.openstreetmap.de/download/windows/webkit-image.zip 41 mkdir -p webkit-image 42 cd webkit-image 43 unzip -o ../webkit-image.zip 44 cd .. 45 46 echo 47 echo "##################################################################" 48 echo "### Build the Complete josm + Plugin Stuff" 30 49 if true; then 31 50 ( -
applications/editors/josm/nsis/josm-setup.sh
r14186 r14189 14 14 15 15 ## settings ## 16 LAUNCH4J="/cygdrive/c/Programme/Launch4j/launch4jc.exe" 17 MAKENSIS="/cygdrive/c/Programme/nsis/makensis.exe" 16 17 if [ -s /cygdrive/c/Programme/Launch4j/launch4jc.exe ]; then 18 echo Using paths: "C:\Programme\..." 19 LAUNCH4J="/cygdrive/c/Programme/Launch4j/launch4jc.exe" 20 MAKENSIS="/cygdrive/c/Programme/nsis/makensis.exe" 21 elif [ -s josm.exe ]; then 22 echo Using UNIX-like paths 23 LAUNCH4J="java -jar /usr/share/launch4j/launch4j.jar" 24 MAKENSIS=makensis 25 fi 26 18 27 19 28 svncorerevision=`svnversion ../core` … … 26 35 echo "Creating Windows Installer for josm-$VERSION" 27 36 28 ################################################################## 29 ### Build the Complete josm + Plugin Stuff 37 echo 38 echo "##################################################################" 39 echo "### Download and unzip the webkit stuff" 40 wget -nc http://josm.openstreetmap.de/download/windows/webkit-image.zip 41 mkdir -p webkit-image 42 cd webkit-image 43 unzip -o ../webkit-image.zip 44 cd .. 45 46 echo 47 echo "##################################################################" 48 echo "### Build the Complete josm + Plugin Stuff" 30 49 if true; then 31 50 ( -
applications/editors/josm/nsis/josm.nsi
r14073 r14189 361 361 SetOutPath $APPDATA\JOSM\plugins 362 362 File "..\dist\wmsplugin.jar" 363 SetOutPath $INSTDIR\webkit-image\imageformats 364 File "webkit-image\imageformats\qjpeg4.dll" 365 SetOutPath $INSTDIR\webkit-image 366 File "webkit-image\mingwm10.dll" 367 File "webkit-image\QtCore4.dll" 368 File "webkit-image\QtGui4.dll" 369 File "webkit-image\QtNetwork4.dll" 370 File "webkit-image\QtWebKit4.dll" 371 File "webkit-image\webkit-image.exe" 363 372 SectionEnd 364 373
Note:
See TracChangeset
for help on using the changeset viewer.