Please list your libraries in /usr/lib like this:
Code:
# ls -l /usr/lib/libXi.so*
You should see something like:
Code:
lrwxrwxrwx 1 root root 14 Jan 8 22:58 /usr/lib/libXi.so -> libXi.so.6.0.0
lrwxrwxrwx 1 root root 14 Jan 8 22:58 /usr/lib/libXi.so.6 -> libXi.so.6.0.0
-rwxr-xr-x 1 root root 28120 Jan 8 22:58 /usr/lib/libXi.so.6.0.0
If you are missing any of these files or links then it is possible that the install will not work.
Normally /usr/lib/ is always searched for shared libraries, so you should not need to create a link in the install or game directory.
B0rsuk is right that you should not be moving files out of /usr/lib.
If you are missing /usr/lib/libXi.so for example, you can create it with this command,
Code:
ln -s /usr/lib/libXi.so.6.0.0 /usr/lib/libXi.so
If you are actually missing /usr/lib/libXi.so.6.0.0, so that
/usr/lib/libXi.so.6 is a link pointing to a non-existent file, you will need to re-install whatever package includes libXi.