Git Repository

The latest version of the Doomseeker source code is publicly available through our git repository on Bitbucket. The repository is available at the following location:

https://bitbucket.org/Doomseeker/doomseeker

Prebuilt Binaries

On occasion binaries of Git revisions for Windows and macOS are provided for testing purposes. These builds can be found on the DRD Team development builds website.

Compilation Instructions

To compile you will need CMake, the Qt Toolkit, libbz2, and zlib. These can be found on cmake.org, qt.io, bzip2.org, and zlib.net respectively. On Windows mingw64 is supported and instructions are available in the repository.

On Debian based Linux distributions the required software can be retrieved by the following command:

sudo apt install build-essential cmake git libbz2-dev zlib1g-dev \
  qt5-default qttools5-dev qttools5-dev-tools qtmultimedia5-dev

Regardless of your preferred distribution the source can be retrieved and compiled with the following command sequence:

git clone https://bitbucket.org/Doomseeker/doomseeker.git doomseeker
cd doomseeker
mkdir build
cd build
cmake ..
make
sudo make install

If the last command was sucessful you should now be able to start Doomseeker by typing doomseeker from the terminal.