- Download and untar as usual
- Modify installer.sh and comment out architecture-checks*
- sudo yum install gtk2-devel-2.18.3-21.fc12.i686
- sudo yum install compat-libstdc++-33-3.2.3-68.i686
- sudo yum install compat-expat1-1.95.8-6.i686
- run installer.sh
In case installer complains something that is still missing apply pattern:
- sudo yum provides '*libexpat.so.0*', where replace libexpat.so.0 between asterisk with missing thingie
- sudo yum install compat-expat1-1.95.8-6.i686, where replace compat-expat1-1.95.8-6.i686 with result of previous step. Note that there will be several hits. Pick the most promising one with ending .i686, that is the 32bit version...
- run installer.sh
Resulting installation may or may not work, I give no guarantees.
* Section commented out:
# Show error if we are not running on x86
#case `uname -m` in
# i?86) ;;
# *) echo "This installer only has x86 binaries. Sorry.";
# exit 1;;
#esac