apparently the SDL2 library is not in LD search path
ldd libSDL2DisplayPlugin.so��
linux-gate.so.1 =>�� (0xf77e9000)
libSDL2-2.0.so.0 => not found
^^^^
libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf75dd000)
/lib/ld-linux.so.2 (0x56573000)
so it simply doesn't starts,
so i installed��
sudo apt-get install libsdl2-2.0-0:i386
but then i found that i need to install 32-bit version of cairo as well..
but alas.. here is where i stuck:
----
sudo apt-get install libcairo2:i386
Reading package lists... Done
Building dependency tree�� �� �� ��
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
��libtheora0 : Depends: libcairo2 (>= 1.2.4) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
��----
something in my installation are in conflict with 32-bit version of cairo.. that's weird..
but unmet dependencies/dependency conflict resolution of linux .deb packages is not my strong side.
So, it would be nice if someone could help how to proceed with that.