MUD client for dragonrealms.
Introduction User interface ScriptingView the Project on GitHub matoom/frostbite
This project is maintained by matoom
Hosted on GitHub Pages — Theme by orderedlist
There are six steps to building your own executable:
Be sure to substitute the desired version for [version] in commands below. The current version is
v1.17.0-beta
.Also, if you are copy-pasting, do not include the
$
prompt.
$ sudo dnf install -y wget tar qt5-*
$ cd $HOME/Downloads # You may alternatively change into any directory within $HOME
$ wget https://github.com/matoom/frostbite/archive/refs/tags/[version].tar.gz
$ tar -xzf [version].tar.gz
$ cd frostbite-[version]
$ qmake-qt5
$ make
$ ./Frostbite # This command should launch the newly built binary
Be sure to substitute the desired version for [version] in commands below. The current version is
v1.17.0-beta
.Also, if you are copy-pasting, do not include the
$
prompt.
$ sudo apt install -y wget tar g++ make qt*5-dev
$ cd $HOME/Downloads # You may alternatively change into any directory within $HOME
$ wget https://github.com/matoom/frostbite/archive/refs/tags/[version].tar.gz
$ tar -xzf [version].tar.gz
$ cd frostbite-[version]
$ qmake
$ make
$ ./Frostbite # This command should launch the newly built binary
For those using the Gnome desktop environment you, may add a branded
icon triggering the binary by adding a file named
frostbite.desktop
to $HOME/.local/share/applications
:
Be sure to substitute the desired the file system location where you extracted the source code archive for [Full path to the project directory] in commands below.
Type=Application
Version=1.0
Name=Frostbite
Comment=Dragonrealms MUD Frontend
Icon=[full path to project directory]/gui/images/shield.png
Exec=[full path to project directory]/Frostbite
Terminal=false