Changeset 646
- Timestamp:
- 05/08/07 09:52:23 (2 years ago)
- Files:
-
- sandbox/lincoln/prey-1.0/pack.xml (modified) (2 diffs)
- sandbox/lincoln/prey-1.0/scripts/install.ahk (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/lincoln/prey-1.0/pack.xml
r643 r646 1 1 <ApplicationPack> 2 <name lang="en"> World of Warcarft</name>3 <shortname> WoW</shortname>2 <name lang="en">Prey</name> 3 <shortname>Prey</shortname> 4 4 <description>Nice FPS Game</description> 5 <version> 2.0</version>5 <version>1.0</version> 6 6 <ms-license>False</ms-license> 7 <vendor> Blizzard</vendor>8 <homepage>http://www. worldofwarcraft.com/</homepage>9 <desktop>resources/ WoW-wine.desktop</desktop>7 <vendor>2k</vendor> 8 <homepage>http://www.prey.com</homepage> 9 <desktop>resources/prey-wine.desktop</desktop> 10 10 <menu>Games</menu> 11 <icon>resources/ wow.svg</icon>11 <icon>resources/prey.png</icon> 12 12 <category>Games</category> 13 <winecompat wineversion="0.9.3 5" winerating="Gold" />13 <winecompat wineversion="0.9.33" winerating="Gold" /> 14 14 <winevariant>winehq</winevariant> 15 15 <crack required="0"></crack> … … 18 18 <votes>5</votes> 19 19 <install>scripts/install.ahk</install> 20 <run>"C:\Program Files\World of Warcraft\WoW.exe"</run> 21 <requires name="verdana" version="1" /> 20 <run>scripts/prey.sh</run> 22 21 </ApplicationPack> sandbox/lincoln/prey-1.0/scripts/install.ahk
r643 r646 11 11 Gui, Submit ; Save the input from the user to each control's associated variable. 12 12 13 IfExist, %Cdrom%/ Installer.exe13 IfExist, %Cdrom%/setup.exe 14 14 ;SetWorkingDir %Cdrom% 15 Run %Cdrom%/ Installer.exe, %Cdrom%15 Run %Cdrom%/setup.exe, %Cdrom% 16 16 else 17 17 { … … 19 19 Gui, Show,, Choose CDROM Drive 20 20 } 21 22 IfWinExist Prey - InstallShield Wizard 23 { 24 WinActivate 25 } 26 else 27 { 28 WinWait Prey - InstallShield Wizard 29 WinActivate 30 } 31 Send !N 32 IfWinExist InstallShield Wizard 33 { 34 WinActivate 35 } 36 else 37 { 38 WinWait InstallShield Wizard 39 WinActivate 40 } 41 Send !N 42 IfWinExist Prey - InstallShield Wizard 43 { 44 WinActivate 45 } 46 else 47 { 48 WinWait Prey - InstallShield Wizard 49 WinActivate 50 } 51 Sleep, 100 52 Send !N 53
