source: osm/applications/editors/josm/nsis/josm-setup-unix.sh@ 24460

Last change on this file since 24460 was 18004, checked in by stoecker, 15 years ago

build fixes

  • Property svn:executable set to *
File size: 3.4 KB
Line 
1#!/bin/bash
2
3# Creates an josm-setup-xy.exe File
4#
5# for working on a debian-unix system install the nsis package with
6# apt-get install nsis
7# replace the /usr/share/nsis/Plugins/System.dll with the Version from the nsis .zip File
8# The one comming with the debian package is missing the Call:: Function
9# See also /usr/share/doc/nsis/README.Debian
10#
11# Then download launch4j from http://launch4j.sourceforge.net/
12# wget http://mesh.dl.sourceforge.net/sourceforge/launch4j/launch4j-3.0.0-pre2-linux.tgz
13# and unpack it to /usr/share/launch4j
14
15## settings ##
16
17# trying to find launch4j
18if [ -s /cygdrive/c/Programme/Launch4j/launch4jc.exe ]; then
19 # Windows under cygwin
20 LAUNCH4J="/cygdrive/c/Programme/Launch4j/launch4jc.exe"
21elif [ -s /usr/share/launch4j/launch4j.jar ]; then
22 # as described above
23 LAUNCH4J="java -jar /usr/share/launch4j/launch4j.jar"
24elif [ -s ../launch4j/launch4j.jar ]; then
25 LAUNCH4J="java -jar ../launch4j/launch4j.jar"
26else
27 # launch4j installed locally under this nsis folder
28 LAUNCH4J="java -jar ./launch4j/launch4j.jar"
29fi
30echo Using launch4j: $LAUNCH4J
31
32# trying to find makensis
33if [ -s /cygdrive/c/Programme/nsis/makensis.exe ]; then
34 # Windows under cygwin
35 MAKENSIS="/cygdrive/c/Programme/nsis/makensis.exe"
36else
37 # UNIX like
38 MAKENSIS=/usr/bin/makensis
39fi
40echo Using NSIS: $MAKENSIS
41
42if [ -n "$1" ]; then
43 export VERSION=$1
44 export JOSM_BUILD="no"
45 export WEBKIT_DOWNLAD="no"
46 export JOSM_FILE="/var/www/josm.openstreetmap.de/download/josm-tested.jar"
47else
48 svncorerevision=`svnversion ../core`
49 svnpluginsrevision=`svnversion ../plugins`
50 svnrevision="$svncorerevision-$svnpluginsrevision"
51
52 export VERSION=custom-${svnrevision}
53 export JOSM_BUILD="yes"
54 export WEBKIT_DOWNLOAD="yes"
55 export JOSM_FILE="..\core\dist\josm-custom.jar"
56fi
57
58echo "Creating Windows Installer for josm-$VERSION"
59
60echo
61echo "##################################################################"
62echo "### Download and unzip the webkit stuff"
63if [ "x$WEBKIT_DOWNLOAD" == "xyes" ]; then
64 wget --continue --timestamping http://josm.openstreetmap.de/download/windows/webkit-image.zip
65fi
66mkdir -p webkit-image
67cd webkit-image
68unzip -o ../webkit-image.zip
69cd ..
70
71echo
72echo "##################################################################"
73echo "### Build the Complete josm + Plugin Stuff"
74if [ "x$JOSM_BUILD" == "xyes" ]; then
75 (
76 echo "Build the Complete josm Stuff"
77
78 echo "Compile Josm"
79 cd ../core
80 ant -q clean
81 ant -q compile || exit -1
82 cd ..
83
84 echo "Compile Josm Plugins"
85 cd plugins
86 ant -q clean
87 ant -q dist || exit -1
88 ) || exit -1
89fi
90
91/bin/cp $JOSM_FILE josm-tested.jar
92echo
93echo "##################################################################"
94echo "### convert jar to exe with launch4j"
95# (an exe file makes attaching to file extensions a lot easier)
96# launch4j - http://launch4j.sourceforge.net/
97# delete old exe file first
98/bin/rm -f josm.exe
99$LAUNCH4J "launch4j.xml"
100
101if ! [ -s josm.exe ]; then
102 echo "NO Josm File Created"
103 exit -1
104fi
105
106echo
107echo "##################################################################"
108echo "### create the josm-installer-${VERSION}.exe with makensis"
109# NSIS - http://nsis.sourceforge.net/Main_Page
110# apt-get install nsis
111$MAKENSIS -V2 -DVERSION=$VERSION josm.nsi
112
113# keep the intermediate file, for debugging
114/bin/rm josm-intermediate.exe 2>/dev/null >/dev/null
115/bin/rm -f josm-tested.jar 2>/dev/null >/dev/null
116/bin/mv josm.exe josm-intermediate.exe 2>/dev/null >/dev/null
Note: See TracBrowser for help on using the repository browser.