diff options
author | godalming123 <r2hk9ahnf@relay.firefox.com> | 2022-10-25 20:41:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 20:41:44 +0100 |
commit | 89c713a9d5a8ee5cdb0fa728a171231391463fdf (patch) | |
tree | 51b3a72f48f0faa9b71cb6d16fb23f9d095f6de7 | |
parent | 0d779ef6359ff8a66b7c22ca7dee6b6097faa903 (diff) |
Add Fedora build dependencies to readme.
-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 |