|
I don't know if this helps you, but for me it was at the OS level. Try first to install frozen bubble using your package manager (will solve dependencies), then do the following if you keep getting errors like "Can't locate loadable object for module SDL::SFont in @INC":
$ sudo updatedb
$ locate SFont.so
/usr/local/lib/perl/5.8.8/auto/src/SDL/SFont/SFont.so
$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib/perl/5.8.8/auto/src/SDL/SFont/
Hope it helps. |