How to Install Dispatch on Manjaro
In this tutorial, we will learn how to install Dispatch on Manjaro by downloading the source code from GitHub.
Prerequisites
Before we begin, make sure your Manjaro system is up to date. You will also need to have the Git package installed on your system.
sudo pacman -Syu git
Installing Dispatch
Open the Terminal and clone the Dispatch repository from GitHub.
git clone https://github.com/khlieng/dispatch.gitNavigate to the Dispatch directory.
cd dispatchInstall the required dependencies.
sudo pacman -S cmake qt5-base qt5-svg qt5-tools qt5-websockets protobuf ninjaCreate a build directory and navigate into it.
mkdir build cd buildRun the CMake configuration.
cmake .. -GNinjaBuild and install Dispatch.
ninja installVerify that Dispatch is installed correctly by running the following command.
dispatch --versionThe output should show the Dispatch version number.
Conclusion
In this tutorial, we learned how to install Dispatch on Manjaro by downloading the source code from GitHub. Dispatch is now installed on your system and ready to use.