phoenixbyrd

Eternal-Lands-RPI4

May 13th, 2020
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. Eternal Lands - Raspberry Pi 4 build instructions
  2.  
  3. Install required dependencies:
  4.  
  5. sudo apt install libcal3d12-dev libpng12-0 libsdl2-image-dev libvorbis-dev
  6.  
  7. Now we run git clone:
  8.  
  9. git clone [email protected]:raduprv/Eternal-Lands.git
  10.  
  11.  
  12. Run the following commands:
  13.  
  14. cd ~/Eternal-Lands
  15. mkdir build
  16. cd build
  17. cmake ../
  18. make
  19.  
  20. With any luck this will compile the binary el.linux.bin
  21.  
  22. You will need the data files from the windows installer to do this we'll need to extract them from the .exe with innoextract
  23.  
  24. sudo apt install innoextract
  25.  
  26. now download the windows installer here: http://www.eternal-lands.com/el_195_install.exe
  27.  
  28. Now we can extract the .exe
  29.  
  30. innoextract el_195_install.exe
  31.  
  32. This will extract the file into a folder name app, just copy the el.linux.bin binary into there.
  33.  
  34. Run the game with
  35.  
  36. ./el.linux.bin
  37.  
  38. ENJOY!
Add Comment
Please, Sign In to add comment