Changeset 5149 in osm for applications
- Timestamp:
- 2007-10-24T08:06:59+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/nsis/josm-setup-unix.sh
r5148 r5149 17 17 ### Build the Complete josm + Plugin Stuff 18 18 if true; then 19 echo "Build the Complete josm Stuff" 20 21 echo "Compile Josm" 22 cd ../core 23 ant clean 24 ant compile || exit -1 25 cd .. 19 ( 20 echo "Build the Complete josm Stuff" 26 21 27 echo "Compile Josm Plugins" 28 cd plugins 29 ant clean 30 ant dist || exit -1 22 echo "Compile Josm" 23 cd ../core 24 ant clean 25 ant compile || exit -1 26 cd .. 27 28 echo "Compile Josm Plugins" 29 cd plugins 30 ant clean 31 ant dist || exit -1 32 ) || exit -1 31 33 fi 32 34 33 35 34 ################################################################## 35 ### Copy the required Stuff into the download Directory 36 echo 37 echo "##################################################################" 38 echo "### Copy the required Stuff into the download Directory" 36 39 mkdir -p downloads 37 40 ( … … 46 49 ) 47 50 48 ################################################################## 49 ### convert jar to exe 51 echo 52 echo "##################################################################" 53 echo "### convert jar to exe with launch4j" 50 54 # (makes attaching to file extensions a lot easier) 51 55 # launch4j - http://launch4j.sourceforge.net/ 52 56 $LAUNCH4J ./launch4j.xml 53 57 54 ################################################################## 55 ### create the installer exe 58 echo 59 echo "##################################################################" 60 echo "### create the installer exe with makensis" 56 61 # NSIS - http://nsis.sourceforge.net/Main_Page 57 62 # apt-get install nsis
Note:
See TracChangeset
for help on using the changeset viewer.