Advertisement
Guest User

Blokel Compiler for GNU/Linux

a guest
Mar 7th, 2015
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. # Blokel Compiler for GNU/Linux (Debian/Ubuntu Version, can be converted)
  2.  
  3. # Install dependencies
  4. sudo apt-get install build-essential cmake git libirrlicht-dev libbz2-dev libgettextpo-dev libfreetype6-dev libpng12-dev libjpeg8-dev libxxf86vm-dev libgl1-mesa-dev libsqlite3-dev libogg-dev libvorbis-dev libopenal-dev libhiredis-dev
  5.  
  6. # Download latest source code
  7. git clone https://github.com/blokel/blokel.git
  8. cd blokel/
  9.  
  10. # Download latest blokel_game (for features)
  11. cd games/
  12. git clone https://github.com/blokel/blokel_game.git
  13. cd ../
  14.  
  15. # Building
  16. cmake . -DENABLE_GETTEXT=1 -DENABLE_FREETYPE=1 -DENABLE_LEVELDB=1 -DENABLE_REDIS=1
  17. make -j$(grep -c processor /proc/cpuinfo)
  18.  
  19. # Running
  20. cd bin/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement