Install FAudio
Some games (e.g., Celeste) may depend on FAudio. If your distribution does not provide it, you can compile and install it yourself.
The official README for FAudio provides general steps for building FAudio:
git clone https://github.com/FNA-XNA/FAudio.git
cd FAudio
mkdir build && cd build
cmake ..
make -j$(nproc)
sudo make install
Update FAudio
-
Get the latest code:
cd FAudio
git pull origin main -
Recompile and install:
mkdir -p build
cd build
cmake ..
make -j$(nproc)
sudo make install