From b54266d605b597d967e4b13dcf04d2e43ce43691 Mon Sep 17 00:00:00 2001 From: "Spencer C. Imbleau" Date: Fri, 13 Sep 2024 11:00:32 -0400 Subject: [PATCH] docs: fix deps discrepency between Fedora/Ubuntu (#299) Slight discrepancy between the instructions for Fedora and Ubuntu. In the Fedora instructions, it doesn't include `pkg-config`, in Ubuntu, it does. --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e68d4646..df495b7f 100644 --- a/README.md +++ b/README.md @@ -121,15 +121,18 @@ The type erasure of View nodes is not an easy trick, as the trait has two associ ### Linux and BSD You need to have installed `pkg-config`, `clang`, and the development packages of `wayland`, -`libxkbcommon`, `libxcb`, and `vulkan-loader`. +`libxkbcommon`, `libxcb`, and `vulkan-loader`. Most distributions have `pkg-config` installed by default. + +To install the remaining packages on Fedora, run: -Most distributions have `pkg-config` installed by default. To install the remaining packages on Fedora, run ```sh sudo dnf install clang wayland-devel libxkbcommon-x11-devel libxcb-devel vulkan-loader-devel ``` -To install them on Debian or Ubuntu, run + +To install the remaining packages on Debian or Ubuntu, run: + ```sh -sudo apt-get install pkg-config clang libwayland-dev libxkbcommon-x11-dev libvulkan-dev +sudo apt-get install clang libwayland-dev libxkbcommon-x11-dev libvulkan-dev ``` ## Minimum supported Rust Version (MSRV)