First, the big problem is the .deb provided on the main love2d.org page is for ubuntu 10.10+. So this means you have to build from source.
I have to build love from source myself just to get it to run my machine. The problem is that love won't compile with the older libs 10.04 has. There's an easy way to get around this. When you build, you need to use the DLOVE_OLD_MODPLUG flag when building.
Basically, it's the same procedure as when you normally build love, but with an extra flag.
Code: Select all
#!/bin/sh
CXXFLAGS="-DLOVE_OLD_MODPLUG"
./configure
make