Changeset 35 for trunk/www/emulator.php
- Timestamp:
- Jun 15, 2009, 10:19:02 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/emulator.php
r34 r35 37 37 $this->Lock(); 38 38 $this->Task->Add('Stažení emulátoru', array( 39 'php www/shell.php EmulatorLock '.$this->Id, 39 40 'mkdir '.$Config['BaseDir'].'emulator/'.$this->Id.'/', 40 41 'cd '.$Config['BaseDir'].'emulator/'.$this->Id.'/', … … 45 46 'svn checkout -r '.$this->Emulator['ScriptDev2Revision'].' https://scriptdev2.svn.sourceforge.net/svnroot/scriptdev2/ src/bindings/ScriptDev2', 46 47 'git apply src/bindings/ScriptDev2/patches/'.$this->Emulator['ScriptDev2PatchFileName'], 48 'php www/shell.php EmulatorUnLock '.$this->Id, 47 49 )); 48 50 } … … 54 56 $this->Lock(); 55 57 $this->Task->Add('Překlad emulátoru', array( 58 'php www/shell.php EmulatorLock '.$this->Id, 56 59 'cd '.$Config['BaseDir'].'emulator/'.$this->Id.'/source', 57 60 'autoreconf -ifv', … … 63 66 'make', 64 67 'make install', 68 'php www/shell.php EmulatorUnLock '.$this->Id, 65 69 )); 66 70 } … … 70 74 $this->Lock(); 71 75 $this->Task->Add('Vygenerování souborů map', array( 76 'php www/shell.php EmulatorLock '.$this->Id, 72 77 'cd wowclient/'.$this->Emulator['Client']['Version'].'/client', 73 78 'wine emulator/'.$this->Id.'/source/contrib/extractor/ad.exe', 74 79 'mv wowclient/'.$this->Emulator['Client']['Version'].'/client/dbc wowclient/'.$this->Emulator['Client']['Version'].'/', 75 80 'mv wowclient/'.$this->Emulator['Client']['Version'].'/client/maps wowclient/'.$this->Emulator['Client']['Version'].'/', 81 'php www/shell.php EmulatorUnLock '.$this->Id, 76 82 )); 77 83 return('Požadavek na vygenerování map zařazen.'); 78 84 } 79 80 85 81 86 function Lock()
Note:
See TracChangeset
for help on using the changeset viewer.