Install Liferea from sources
par Alexis Métaireau
Recently, I had to install liferea from sources, in order to have the google reader syncronisation.
This is not the last trunk version, but a version that works well on my system.
Here is the steps, on a Ubuntu 9.04 system:
Download / Extract
wget http://sourceforge.net/projects/liferea/files/Liferea%20Unstable/liferea-1.5.10.tar.gz/download
tar -xvzf liferea-1.5.10.tar.gz
tar -xvzf liferea-1.5.10.tar.gz
Get dependencies
sudo apt-get build-dep liferea
sudo apt-get install -y libcurl4-gnutls-dev libwebkit-dev
sudo apt-get install -y libcurl4-gnutls-dev libwebkit-dev
Build
cd liferea-1.5.10
./configure
make
sudo make install
./configure
make
sudo make install
And that’s all,
Hope this helps !