Changeset 3516 for trunk/tools/install
- Timestamp:
- May 10, 2000, 3:57:49 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/install/odin.cmd
r3459 r3516 66 66 rc = lineout(instfile, 'of the Win32 binary emulator.'); 67 67 rc = lineout(instfile, ''); 68 rc = lineout(instfile, 'This readme is intended for end users that have downloaded the'); 69 rc = lineout(instfile, 'latest public alpha release and want to give it a try. For more'); 70 rc = lineout(instfile, 'information, be sure to regularly check http://www.netlabs.org/odin.</TEXT>'); 68 rc = lineout(instfile, 'Odin is available thanks to the work of the following people:'); 69 rc = lineout(instfile, ''); 70 rc = lineout(instfile, ' Christoph Bratschi'); 71 rc = lineout(instfile, ' Edgar Buerkle'); 72 rc = lineout(instfile, ' Yuri Dario'); 73 rc = lineout(instfile, ' Przemyslaw Dobrowolski'); 74 rc = lineout(instfile, ' Daniela Engert'); 75 rc = lineout(instfile, ' Peter Fitzsimmons'); 76 rc = lineout(instfile, ' Adrian Gschwend'); 77 rc = lineout(instfile, ' Jeroen van den Horn'); 78 rc = lineout(instfile, ' Patrick Haller'); 79 rc = lineout(instfile, ' Achim Hasenmueller'); 80 rc = lineout(instfile, ' Kevin Langman'); 81 rc = lineout(instfile, ' Bart van Leeuwen'); 82 rc = lineout(instfile, ' Sander van Leeuwen'); 83 rc = lineout(instfile, ' Felix Maschek'); 84 rc = lineout(instfile, ' Chris McKillop'); 85 rc = lineout(instfile, ' Nenad Milenkovic'); 86 rc = lineout(instfile, ' Michal Necasek'); 87 rc = lineout(instfile, ' Ondrej Necasek'); 88 rc = lineout(instfile, ' Knut Stange Osmundsen'); 89 rc = lineout(instfile, ' Vitali E. Pelenyov'); 90 rc = lineout(instfile, ' Rene Pronk'); 91 rc = lineout(instfile, ' David Raison'); 92 rc = lineout(instfile, ' Vit Timchishin'); 93 rc = lineout(instfile, ' Joel Troster'); 94 rc = lineout(instfile, ' Jens Wiessner'); 95 rc = lineout(instfile, ' Vince Vielhaber'); 96 rc = lineout(instfile, ' All the WINE people'); 97 rc = lineout(instfile, ''); 98 rc = lineout(instfile, '</TEXT>'); 71 99 rc = lineout(instfile, '</PAGE>'); 72 100 rc = lineout(instfile, '<PAGE INDEX=2 TYPE=README>'); … … 145 173 rc = lineout(instfile, '</README>'); 146 174 rc = lineout(instfile, '</PAGE>'); 147 rc = lineout(instfile, '<PAGE INDEX=3 TYPE= CONTAINER>');175 rc = lineout(instfile, '<PAGE INDEX=3 TYPE=README>'); 148 176 rc = lineout(instfile, '<NEXTBUTTON TARGET=4>~Next</NEXTBUTTON>'); 149 177 rc = lineout(instfile, '<TEXT>'); 178 rc = lineout(instfile, 'List of changes and bugfixes for this Odin daily build ('date()')'); 179 rc = lineout(instfile, '</TEXT>'); 180 rc = lineout(instfile, '<README>'); 181 /* Insert ChangeLog */ 182 changelog = '..\..\ChangeLog' 183 logline = linein(changelog); 184 do while lines(changelog) > 0 185 rc = lineout(instfile, logline); 186 logline = linein(changelog); 187 end 188 rc = lineout(instfile, '</README>'); 189 rc = lineout(instfile, '</PAGE>'); 190 rc = lineout(instfile, '<PAGE INDEX=4 TYPE=CONTAINER>'); 191 rc = lineout(instfile, '<NEXTBUTTON TARGET=5>~Next</NEXTBUTTON>'); 192 rc = lineout(instfile, '<TEXT>'); 150 193 rc = lineout(instfile, 'Please select the packages which are to be installed. You may change the target paths for the packages.'); 151 194 rc = lineout(instfile, '</TEXT>'); 152 195 rc = lineout(instfile, '</PAGE>'); 153 rc = lineout(instfile, '<PAGE INDEX= 4TYPE=CONFIGURE>');154 rc = lineout(instfile, '<NEXTBUTTON TARGET= 5>~Next</NEXTBUTTON>');196 rc = lineout(instfile, '<PAGE INDEX=5 TYPE=CONFIGURE>'); 197 rc = lineout(instfile, '<NEXTBUTTON TARGET=6>~Next</NEXTBUTTON>'); 155 198 rc = lineout(instfile, '<TEXT>'); 156 199 rc = lineout(instfile, 'Please select additional configuration that WarpIN should perform after installing this archive.'); 157 200 rc = lineout(instfile, '</TEXT>'); 158 201 rc = lineout(instfile, '</PAGE>'); 159 rc = lineout(instfile, '<PAGE INDEX= 5TYPE=TEXT>');202 rc = lineout(instfile, '<PAGE INDEX=6 TYPE=TEXT>'); 160 203 rc = lineout(instfile, '<NEXTBUTTON TARGET=0>I~nstall</NEXTBUTTON>'); 161 204 rc = lineout(instfile, '<TEXT>'); … … 175 218 do 176 219 dlldir = "bin\debug"; 177 installarchive = "odin32bin-"date('S')" _debug"220 installarchive = "odin32bin-"date('S')"-debug" 178 221 end 179 222 else 180 223 do 181 224 dlldir = "bin\release"; 182 installarchive = "odin32bin-"date('S')" _release"225 installarchive = "odin32bin-"date('S')"-release" 183 226 end 184 227 … … 187 230 "del "installarchive".wpi"; 188 231 189 /* package 1: Mahjongg */190 232 call directory maindir; 191 233 "wic.exe "curdir"\"installarchive" -a 1 LICENSE.TXT ChangeLog Readme.txt"; … … 200 242 "wic.exe "curdir"\"installarchive" -a 4 *.dll"; 201 243 202 call directory "..\Voodoo 1"244 call directory "..\Voodoo2" 203 245 "wic.exe "curdir"\"installarchive" -a 5 *.dll"; 204 246
Note:
See TracChangeset
for help on using the changeset viewer.