rm -rf /sw
mkdir ~/bin
cp ~/Desktop/gcc* ~/bin/gcc
chmod a+x ~/bin/gcc
export PATH=$HOME/bin:$PATH
source .bash_profileNow download and install fink from http://downloads.sourceforge.net/fink/ fink-0.29.10.tar.gz (clicking the link should download it into your ~/Downloads folder):
source .profile
cd ~/DownloadsNow install libgettext3-dev:
tar -xvf fink-0.29.10.tar.gz
cd fink-0.29.10
./bootstrap /sw
/sw/bin/pathsetup.sh
fink selfupdate
fink scanpackagesNow install glib and glib2
sudo apt-get update
sudo apt-get install libgettext3-dev=0.14.5-2
fink install glibThen install exonerate from the source code http://www.ebi.ac.uk/~guy/exonerate/exonerate-2.2.0.tar.gz (clicking the link should download it into your ~/Downloads folder).
fink install glib2-dev
cd ~/Downloads/exonerate-2.2.0
./configure
make
make install