Skip to content

Instantly share code, notes, and snippets.

@JacobHacker
Last active December 17, 2015 03:19
Show Gist options
  • Save JacobHacker/5542586 to your computer and use it in GitHub Desktop.
Save JacobHacker/5542586 to your computer and use it in GitHub Desktop.
#Deps
sudo apt-get install libkeybinder-dev libxtst-dev
# SMART
# Install openjdk 7 & run this, note this may break other things using java
sudo update-java-alternatives -s java-1.7.0-openjdk-i386
# Download Simba (start in whatever directory you want, I chose ~/src/)
git clone https://github.com/MerlijnWajer/Simba.git
cd Simba
git submodule init; git submodule update
# Get & compile FPC 2.6.2
cd /tmp
wget -O fpc-2.6.2.i386-linux.tar "http://sourceforge.net/projects/freepascal/files/Linux/2.6.2/fpc-2.6.2.i386-linux.tar/download"
tar xvf fpc-2.6.2.i386-linux.tar
cd fpc-2.6.2.i386-linux
sudo ./install.sh
# I put FPC in /usr/local, and chose defaults for everything else (change as needed)
# Get Lazarus 1.0.8
wget -O lazarus_1.0.8-0_i386.deb "http://sourceforge.net/projects/lazarus/files/Lazarus%20Linux%20i386%20DEB/Lazarus%201.0.8/lazarus_1.0.8-0_i386.deb/download"
# From here open lazarus then open the lpi file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment