| 1 | = Get it Running = |
| 2 | |
| 3 | == Mac OS X == |
| 4 | |
| 5 | === Installing the Libraries === |
| 6 | Our code is programmed to compile with the Fink version of SDL. So get [www.fink.org fink] and Fink Commander to install sdl, sdl-image and sdl-mixer. Unfortunately SDL_ttf is not installable via Fink Commander, so download the source directly from [http://www.libsdl.org/projects/SDL_ttf] and compile it yourself: |
| 7 | To install SDL_ttf to the fink directory use the following configure command: |
| 8 | {{{ |
| 9 | wraith user # ./configure --prefix=/sw/ |
| 10 | }}} |
| 11 | |
| 12 | === Getting the Source === |
| 13 | Install subversion also via the Fink. This should work just fine. |
| 14 | |
| 15 | === Compiling === |
| 16 | Then compile and install by revoking |
| 17 | {{{ |
| 18 | wraith user # ./configure |
| 19 | wraith user # make |
| 20 | wraith user # make install |
| 21 | }}} |