libgirara depends on GTK+ 3, a cross-platform widget toolkit.
Since girara packages are available in many distributions it is recommended to install it from there with your prefered package manager. Otherwise you can grab the latest version of the source code from our website and build it by hand:
$ tar xfv girara-<version>.tar.xz $ cd girara-<version> $ mkdir build $ meson build $ cd build $ ninja $ ninja install
If you are interested to use the current version of libgirara you need to pull the source from our git repository and build it by hand:
$ git clone https://github.com/pwmt/girara.git $ cd girara $ git checkout --track -b develop origin/develop $ mkdir build $ meson build $ cd build $ ninja $ ninja install