Skip to content

Commit

Permalink
Add Arch / Manjaro dependencies (bevyengine#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
wyhaya authored and BimDav committed Aug 26, 2020
1 parent 2691c32 commit ea11e42
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions docs/linux_dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit ea11e42

Please sign in to comment.