Ubuntu – Building Rhythmbox from source

developmentgstreamerrhythmbox

I'm trying to build rhythmbox from source to have a go at adding an extra feature. I'm running into issues with gstreamer

configure: error: Package requirements (    gstreamer-1.0 >= 0.11.92
gstreamer-audio-1.0 >= 0.11.92
gstreamer-base-1.0 >= 0.11.92
gstreamer-plugins-base-1.0 >= 0.11.92
gstreamer-pbutils-1.0 >= 0.11.92) were not met:

No package 'gstreamer-audio-1.0' found 
No package 'gstreamer-plugins-base-1.0' found
No package 'gstreamer-pbutils-1.0' found

I've tried what's in this post,

sudo apt-get build-dep rhythmbox

and installing some of the gstreamer packages to no avail.

Best Answer

Maybe you need to install the devel packages of gstreamer. Try installing these packages:

sudo apt-get install libgstreamer-plugins-base1.0-dev
Related Question