This is my first tutorial and post on Raspberry pi Forums. about compiling ENIGMA IDE on Raspberry pi
WHAT IS ENIGMA-DEV?
ENIGMA, the Extensible Non-Interpreted Game Maker Augmentation, is an open source cross-platform game development environment derived from that of the popular software Game Maker. Its intention is to provide you with a quality game creation tool and a bridge between high- and low-level programming languages. It can be used either through an IDE, namely, its sister project, LateralGM, or through a Command line interface.
THE TUTORIAL alternatively you can download my installer: 1. Download depencies
Code: Select all
sudo apt-get install build-essential g++ zlib1g-dev libglew-dev libglu1-mesa-dev libalure-dev libvorbisfile3 libvorbis-dev libbox2d-dev oracle-java7-jdk libdumb1-dev git default-jre wgetCode: Select all
git clone git://github.com/enigma-dev/enigma-dev.git && cd enigma-devCode: Select all
wget http://pastebin.com/raw/6ZmrzWKP -O start.sh && sed -i -e 's/\r$//' start.shCode: Select all
chmod +x start.sh && chmod +x install.pyCode: Select all
./install.py && cd CompilerSourceCode: Select all
make clean && makethe installer won't work if the user didn't execute "sudo chmod +x installer.sh"
MOST IMPORTANT: TO RUN IT EXECUTE "~/enigma-dev/start.sh"