Add Solus package requrements to linux_dependencies.md (#10996)

Packages are all available but follow a different naming convention on
[Solus OS](https://getsol.us/). This change will help people develop
with bevy on Solus.

# Objective

Update documentation with install instructions on Solus

## Solution

Updated documentation
This commit is contained in:
nelson 2023-12-16 16:46:50 -08:00 committed by GitHub
parent 63d17e8494
commit f12e90670a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -190,3 +190,18 @@ If you have issues with `winit` such as `Failed to initialize backend!` or simil
[build]
rustflags = ["-C", "target-feature=-crt-static"]
```
## [Solus](https://getsol.us)
```sh
sudo eopkg it -c system.devel
sudo eopkg it g++ libx11-devel alsa-lib-devel
```
If using Wayland, you may also need to install
```sh
sudo eopkg it wayland-devel libxkbcommon-devel
```
Compiling with clang is also possible - replace the `g++` package with `llvm-clang`