From 7b6fbcb932f240e7789bb4ea292cff7eb3682cc9 Mon Sep 17 00:00:00 2001 From: wyhaya Date: Mon, 24 Aug 2020 04:18:46 +0800 Subject: [PATCH] Add Arch / Manjaro dependencies (#275) --- docs/linux_dependencies.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/linux_dependencies.md b/docs/linux_dependencies.md index 74c194a797357..5d019db445cbd 100644 --- a/docs/linux_dependencies.md +++ b/docs/linux_dependencies.md @@ -5,7 +5,16 @@ This page lists the required dependencies to build a Bevy project on your Linux If you don't see your distro present in the list, feel free to add the instructions in this document. ## Ubuntu 20.04 -`sudo apt-get install libx11-dev libasound2-dev` +```bash +sudo apt-get install libx11-dev libasound2-dev +``` ## Fedora 32 -`sudo dnf install gcc-c++ libX11-devel alsa-lib-devel` +```bash +sudo dnf install gcc-c++ libX11-devel alsa-lib-devel +``` + +## Arch / Manjaro +```bash +sudo pacman -S libx11 pkgconf alsa-lib +```