diff options
-rw-r--r-- | README.md | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -26,7 +26,9 @@ single frame. ## Install ### Building -Install the necessary dependencies, e.g. for Arch: +Install the necessary dependencies. + +#### For Arch: ```sh # Runtime dependencies sudo pacman -S freetype2 harfbuzz cairo pango wayland libxkbcommon @@ -35,6 +37,15 @@ sudo pacman -S freetype2 harfbuzz cairo pango wayland libxkbcommon sudo pacman -S meson scdoc wayland-protocols ``` +#### For Fedora +```sh +# Runtime dependencies +sudo dnf install freetype-devel cairo-devel pango-devel wayland-devel libxkbcommon-devel harfbuzz + +# Build-time dependencies +sudo pacman -S meson scdoc wayland-protocols-devel +``` + Then build: ```sh meson build && ninja -C build install |