Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Arch / Manjaro dependencies #275

Merged
merged 1 commit into from
Aug 23, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
cart marked this conversation as resolved.
Show resolved Hide resolved
```