NEW Obsidian Beta 19 Installation Procedure for Linux Mint v20.2!

Channel:
Subscribers:
407
Published on ● Video Link: https://www.youtube.com/watch?v=5pu9Hg05bqc



Duration: 0:00
1,239 views
9


The other day I went into a "Doom Panic." I wanted to create some doom megawads and realized that my copy of Obsidian was slightly out of date. So (like a dumbass) I deleted my only working copy of Obsidian and proceeded to download the source code for the new version. Cmake complained to me, saying that it was out of date for this source code.

I probably should have at least tried to get the new version of cmake. Instead, I went into panic mode and backed up everything, then installed the new version of Linux Mint v20.2! These instructions are for a fresh copy of v20.2 without any other dependencies installed (except those listed in the video).

DO NOT install cmake from the normal repository. You will get version 3.16 which is too old for the new Obsidian. Instead, follow these instructions to the letter. There is one extra part I added which is not in the original readme. When I didn't do this part, the make command would crash for Obsidian. Anyway, thank you for watching, and read down below for the scripting. Doom RPG with Roguelike Arsenal in my next video!

Installing the NEW Obsidian in Linux Mint 20.2

1) Install cmake
make a source code folder
git clone https://github.com/Kitware/CMake.git cmake
cd cmake
sudo apt install build-essential libssl-dev
./bootstrap
make
sudo make install

2) Install obsidian
make an apps folder
git clone https://github.com/dashodanger/Obsidian.git obsidian
cd obsidian
mkdir build
cd build
sudo apt install libfltk1.3-dev libxft-dev libxinerama-dev libjpeg-dev libpng-dev libfontconfig1-dev
cmake ..
cd source_files/ff_src
make
cd ..
cd ..
make
cd ..