It may run fine but be missing useful features or support for your MP3 player. These things are obviously worth having if you are a frequent user of Banshee. To get the latest version you will need to compile it from source.
To start with make sure you have everything you need to compile from source:
sudo apt-get install build-essentialsNext you will need to update mono-zeroconf. To do this download the latest version from the mono-project. You need to download the “Source code for Linux/OS X (tar.bz2).” Once your download has finished decompress it with the commands:
bzip2 -d mono-zeroconf-0.7.5.tar.bz2You should now have a directory called something like “mono-zeroconf-0.7.5″. Change directory into it and compile and install mono-zeroconf by typing the following commands:
tar -xvf mono-zeroconf-0.7.5.tar
./configureFinally, make sure you have the remaining dependencies installed by typing the following commands:
make
sudo make install
sudo apt-get install gnome-common automake1.9 monodocYou can now upgrade Banshee. To upgrade the latest version you again need to compile it from source. Before you do that make sure you uninstall the current version:
sudo apt-get build-dep banshee
sudo apt-get remove bansheeYou are finally ready to download and compile the latest version of Banshee. Head over to the Banshee Release Page and download the latest release (tarball). Uncompress your download with the following command:
tar -zxvf banshee-0.13.2.tar.gzChange directory into the Banshee directory you just decompressed and compile and install:
./configure –prefix=/usr –disable-daap
make
sudo make install