diff options
| -rw-r--r-- | readme.md (renamed from README.md) | 17 | 
1 files changed, 6 insertions, 11 deletions
@@ -1,3 +1,5 @@ +# Simple Asteroids Clone +  Simple Asteroids clone in C as an exercise in game development.  * Requires [SDL2](https://libsdl.org) for input and drawing. @@ -6,17 +8,10 @@ Simple Asteroids clone in C as an exercise in game development.  In order to compile, the SDL2 development libraries are needed. -### Linux - -#### APT (Debian, Ubuntu, Raspbian) - -`sudo apt update` -`sudo apt install libsdl2-dev` - -#### Yum (Red Hat, Fedora, CentOS) +* Debian, Ubuntu, Raspbian: `sudo apt install libsdl2-dev`. -`sudo yum install SDL2-devel` +* Red Hat, Fedora, CentOS: `sudo yum install SDL2-devel -#### Pacman (Arch) +* Arch: `sudo pacman -S sdl2` -`sudo pacman -S sdl2` +* macOS (with [Homebrew](https://brew.sh)): `brew install sdl2`  | 
