# Exit on error:
set -e

wget http://gstreamer.freedesktop.org/src/gst-python/gst-python-0.10.22.tar.gz
tar xf gst-python-0.10.22.tar.gz
cd gst-python-0.10.22

./configure \
    --prefix=/usr

make
make install

cd ..
exit 0
