Updated README.md

This commit is contained in:
cfultz 2023-11-15 12:21:40 -05:00
parent c05f9e7d3c
commit b4b5ed74ce

View File

@ -29,4 +29,23 @@ docker run -i -t -v ~/zandronum-server:/root/complete zandronum-compiler
This will place the files in ``zandronum-server`` for use. You will need to own them as a local user to run them as they will be output with ``root`` ownership.
## Wait. It doesn't run?
You will need:
* SDL
* bzip2
* libopenssl
* SQLite
* libGL or at least a GL implmentation provider
These can be downloaded on some of the more popular OS's:
### Debian and derivitaives
```
sudo apt install libsdl1.2-compat-dev libbz2-dev libssl-dev libsqlite3-dev libgl1-mesa-dev
```
### Fedora (Rocky is a pain in the dick to get Zandronum working)
```
sudo dnf install SDL-devel bzip2-devel mesa-libGL-devel openssl-devel sqlite-devel
```