The commands are for Debian/Ubuntu OS.
On the https://github.com/kekcleader/FreeOberon.git website
click the green button labeled «Code» and then click «Download ZIP»,
unpack the archive inside your home directory.
You can rename directory FreeOberon-main
to FreeOberon
.
Inside the unpacked directory, run install.sh
with root privileges.
su
./install.sh
Install Git, GCC and Allegro5:
apt-get install -y liballegro5-dev git gcc
Clone the Free Oberon repository:
git clone https://github.com/kekcleader/FreeOberon.git
Clone the OfrontPlus repository using the submodule update command:
cd FreeOberon
git submodule update --init
The FreeOberon/Data/bin/OfrontPlus
directory will be filled with files.
Build OfrontPlus:
cd Data/bin/OfrontPlus/Target/Linux_amd64/Bin
./build
cd ../../../../../../..
Build Free Oberon:
cd FreeOberon/src
./make.sh
Run FreeOberon.
This is done from the directory where the executable file FreeOberon
is located.
./FreeOberon
Document updated on January 11, 2023.