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
|
---|
18 | if [ -s /cygdrive/c/Programme/Launch4j/launch4jc.exe ]; then
|
---|
19 | # Windows under cygwin
|
---|
20 | LAUNCH4J="/cygdrive/c/Programme/Launch4j/launch4jc.exe"
|
---|
21 | elif [ -s /usr/share/launch4j/launch4j.jar ]; then
|
---|
22 | # as described above
|
---|
23 | LAUNCH4J="java -jar /usr/share/launch4j/launch4j.jar"
|
---|
24 | elif [ -s ../launch4j/launch4j.jar ]; then
|
---|
25 | LAUNCH4J="java -jar ../launch4j/launch4j.jar"
|
---|
26 | else
|
---|
27 | # launch4j installed locally under this nsis folder
|
---|
28 | LAUNCH4J="java -jar ./launch4j/launch4j.jar"
|
---|
29 | fi
|
---|
30 | echo Using launch4j: $LAUNCH4J
|
---|
31 |
|
---|
32 | # trying to find makensis
|
---|
33 | if [ -s /cygdrive/c/Programme/nsis/makensis.exe ]; then
|
---|
34 | # Windows under cygwin
|
---|
35 | MAKENSIS="/cygdrive/c/Programme/nsis/makensis.exe"
|
---|
36 | else
|
---|
37 | # UNIX like
|
---|
38 | MAKENSIS=/usr/bin/makensis
|
---|
39 | fi
|
---|
40 | echo Using NSIS: $MAKENSIS
|
---|
41 |
|
---|
42 | if [ -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"
|
---|
47 | else
|
---|
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"
|
---|
56 | fi
|
---|
57 |
|
---|
58 | echo "Creating Windows Installer for josm-$VERSION"
|
---|
59 |
|
---|
60 | echo
|
---|
61 | echo "##################################################################"
|
---|
62 | echo "### Download and unzip the webkit stuff"
|
---|
63 | if [ "x$WEBKIT_DOWNLOAD" == "xyes" ]; then
|
---|
64 | wget --continue --timestamping http://josm.openstreetmap.de/download/windows/webkit-image.zip
|
---|
65 | fi
|
---|
66 | mkdir -p webkit-image
|
---|
67 | cd webkit-image
|
---|
68 | unzip -o ../webkit-image.zip
|
---|
69 | cd ..
|
---|
70 |
|
---|
71 | echo
|
---|
72 | echo "##################################################################"
|
---|
73 | echo "### Build the Complete josm + Plugin Stuff"
|
---|
74 | if [ "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
|
---|
89 | fi
|
---|
90 |
|
---|
91 | /bin/cp $JOSM_FILE josm-tested.jar
|
---|
92 | echo
|
---|
93 | echo "##################################################################"
|
---|
94 | echo "### 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 |
|
---|
101 | if ! [ -s josm.exe ]; then
|
---|
102 | echo "NO Josm File Created"
|
---|
103 | exit -1
|
---|
104 | fi
|
---|
105 |
|
---|
106 | echo
|
---|
107 | echo "##################################################################"
|
---|
108 | echo "### 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
|
---|