-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit.php
More file actions
36 lines (36 loc) · 1.73 KB
/
git.php
File metadata and controls
36 lines (36 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
include 'header.php';
?>
<h1>Git Repository</h1>
<p>The latest version of the Doomseeker source code is publicly available
through our git repository on GitHub. The repository is available
at the following location:</p>
<p><a href="https://github.com/DoomseekerTeam/Doomseeker">https://github.com/DoomseekerTeam/Doomseeker</a></p>
<h1>Prebuilt Binaries</h1>
<p>On occasion binaries of Git revisions for Windows and macOS are provided
for testing purposes. These builds can be found on the DRD Team
<a href="https://devbuilds.drdteam.org/doomseeker/">development builds</a> website.</p>
<h1>Compilation Instructions</h1>
<p>To compile you will need CMake, the Qt Toolkit, libbz2, and zlib.
These can be found on <a href="https://cmake.org/">cmake.org</a>,
<a href="https://www.qt.io/">qt.io</a>, <a href="http://bzip.org/">bzip2.org</a>,
and <a href="https://zlib.net/">zlib.net</a> respectively. On Windows mingw64 is supported and
instructions are available in the <a href="https://github.com/DoomseekerTeam/Doomseeker/blob/master/COMPILE.Windows.txt">repository</a>.</p>
<p>On Debian based Linux distributions the required software can be retrieved
by the following command:</p>
<pre>sudo apt install build-essential cmake git libbz2-dev zlib1g-dev \
qt5-default qttools5-dev qttools5-dev-tools qtmultimedia5-dev</pre>
<p>Regardless of your preferred distribution the source can be retrieved and
compiled with the following command sequence:</p>
<pre>git clone https://github.com/DoomseekerTeam/Doomseeker.git doomseeker
cd doomseeker
mkdir build
cd build
cmake ..
make
sudo make install</pre>
<p>If the last command was sucessful you should now be able to start Doomseeker
by typing doomseeker from the terminal.</p>
<?php
include 'footer.php';
?>