In retrospect I'm not sure if you really need the dev package for libgtk2.0.
sudo apt-get install bzip2 build-essential python zip unzip pkg-config libgtk2.0-dev gconf2 libdbus-1-dev libdbus-glib-1-dev yasm libasound2-dev libcurl4-gnutls-dev libxt-dev mesa-common-dev mkdir ~/tmp/firefox -p cd ~/tmp/firefox wget ftp://ftp.mozilla.org/pub/firefox/releases/18.0/source/firefox-18.0.source.tar.bz2 tar xvf firefox-18.0.source.tar.bz2 mkdir build/ cd build/ ../mozilla-release/./configure --prefix=$HOME/.firefox18 make make install echo "alias firefox18='$HOME/.firefox18/bin/firefox'" >> $HOME/.bashrc source $HOME/.bashrc
Launch by typing
firefox18
Any chance you've tried the make uninstall?
ReplyDeleteDoes that work ?
The short answer is that I haven't tried. I might be able to try next week.
DeleteIn this particular case it is installed in $HOME/.firefox18 so you can simply delete the folder and it's completely gone.
It's obviously a bit more complex if you used the default prefix.
OK, checked it -- 'make uninstall' doesn't work.
DeleteHere's how to set up an uninstall Makefile target with cmake generated projects: http://www.cmake.org/Wiki/CMake_FAQ#Can_I_do_.22make_uninstall.22_with_CMake.3F
Delete