diff --git a/README.md b/README.md index 2bfebea..a235d62 100644 --- a/README.md +++ b/README.md @@ -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 +```