>>680
As I said it's the lazy way but it works. And I'm already somewhat acquainted with dealing with packages and libraries, but here's my experience in this situation:
I read the readme file and it stated the following libraries were required:
>SDL, SDL_image, SDL_mixer, SDL_ttf, SDL_gfx
No problem, since the package name and version aren't described in detail and knowing that "sudo apt-get install SDL" won't work in advance I'll just load up Synaptic Package Manager and grab all of them at once. I type in "SDL" and I get 170 different packages. I remember here someone mentioned libSDL so I try that out and I get 60, quite a few of them installed already. I figure it must be a bit more specific on their site, nope. Their Support and Wiki pages just have the very basic information that is mentioned in the readme.
So how about I run the program and see the error messages instead? libSDL-1.2.so.0 is missing, we're getting somewhere. I'll install that package and get this working-
>E: Unable to locate package libSDL-1.2.so.0
>E: Couldn't find any package by regex 'libSDL-1.2.so.0'
Oh fuck this, this is a simple game not an important piece of software. It'll work without issue in Wine, my controller will work as I'm using QJoypad, why am I wasting all this time when it's 4 clicks away from running? So let's see if your method works, it's a single command and worth a try
>E: Unable to locate package libsdl-gfx1.2-5
Haven't updated my repos in awhile, I'll do that and try again. Nope, still doesn't work but there's 1.2-4 available. Hell now I'm curious, why isn't libSDL-1.2.so.0 loading when it's listed as installed in Synaptics as libsdl1.2?
http://askubuntu.com/questions/201202/error-while-loading-shared-libraries-libsdl-1-2-so-0
Oh I'm not the only one, I'll run sudo apt-get install –reinstall libsdl1.2debian and see if this finally works. Nope.
You're absolutely right that this is a great opportunity to learn about how to deal with package dependency issues but it seems a bit contrived when I already have the program functioning perfectly.