Advertisement
wakaya

Procedures for ES translation and reconstruction

Feb 14th, 2019
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. 1. Resolve dependencies of libraries.
  2.  
  3. % sudo apt-get install -y libboost-system-dev libboost-filesystem-dev libboost-date-time-dev libboost-locale-dev libfreeimage-dev libfreetype6-dev libeigen3-dev libcurl4-openssl-dev libasound2-dev cmake libsdl2-dev
  4.  
  5.  
  6. 2. Create a clone from github.
  7. Furthermore, you should enter there.
  8.  
  9. % git clone --recursive https://github.com/flyinghead/EmulationStation.git
  10. % cd EmulationStation/
  11.  
  12.  
  13. 3. Copy the locale directory.
  14.  
  15. % copy -r locale/lang/fr locale/lang/(Your locale)
  16.  
  17. Then edit your language file.
  18.  
  19. % joe(nano,vim,mule,ed,etc.) locale/lang/(Your locale)/LC_MESSAGES/emulationstation2.po
  20.  
  21.  
  22. 4. Build
  23.  
  24. mkdir build
  25. cd build
  26. cmake ..
  27. make
  28.  
  29.  
  30. 5. Test run
  31. LANG=(Your locale).UTF8 ./emulationstation
  32.  
  33.  
  34. 6. Install
  35. sudo cp ./emulationstation /opt/retropie/supplementary/emulationstation/
  36. sudo cp -r locale resources /opt/retropie/supplementary/emulationstation/
  37.  
  38.  
  39. That's it.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement