From 37589866b50df5d8b287cd483927df2101cbfa67 Mon Sep 17 00:00:00 2001 From: Anirudh Sevugan Date: Sun, 12 Jul 2026 13:44:03 -0500 Subject: [PATCH] add sound libs --- docs/BUILDING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/BUILDING.md b/docs/BUILDING.md index 6f95e14f4..0c91fac36 100644 --- a/docs/BUILDING.md +++ b/docs/BUILDING.md @@ -39,11 +39,11 @@ In the installer, you must select the following **Workloads** and **Individual c ### Linux The following command will install the required dependencies on a distro that uses `apt` (such as Debian-based distros). ```bash -sudo apt install autoconf automake libtool pkg-config curl cmake ninja-build clang clang-tools libgtk-3-dev +sudo apt install autoconf automake libtool pkg-config curl cmake ninja-build clang clang-tools libgtk-3-dev libasound2-dev libpulse-dev libpipewire-0.3-dev ``` The following command will install the required dependencies on a distro that uses `pacman` (such as Arch-based distros). ```bash -sudo pacman -S base-devel ninja lld clang gtk3 +sudo pacman -S base-devel ninja lld clang gtk3 alsa-lib libpulse pipewire ``` You can also find the equivalent packages for your preferred distro.