libsaria: Switch to gstreamer 1.0

Gstreamer 1.0 has been out for a while and replaces gstreamer 0.10.
Let's make sure we use the most recent version going forward.

Signed-off-by: Bryan Schumaker <bjschuma@gmail.com>
This commit is contained in:
Bryan Schumaker 2012-11-08 08:09:05 -05:00
parent 33c80788b8
commit beb9019057
3 changed files with 4 additions and 4 deletions

View File

@ -6,8 +6,8 @@ pkgdesc="A simple GTK and gstreamer based music player."
url="http://www.ocarinaproject.net/"
arch=('x86_64' 'i686')
license=('SimPL')
depends=('gtk2' 'gstreamer0.10-base' 'gstreamer0.10-base-plugins' 'taglib')
optdepends=('gstreamer0.10-good-plugins' 'gstreamer0.10-bad-plugins' 'gstreamer0.10-ugly-plugins')
depends=('gtk2' 'gstreamer' 'gst-plugins-base' 'taglib')
optdepends=('gst-plugins-good' 'gst-plugins-bad' 'gst-plugins-ugly')
makedepends=('scons')
conflicts=()
replaces=()

View File

@ -2,7 +2,7 @@
import config
config.env.ParseConfig('pkg-config --cflags --libs gstreamer-0.10')
config.env.ParseConfig('pkg-config --cflags --libs gstreamer-interfaces-0.10')
#config.env.ParseConfig('pkg-config --cflags --libs gstreamer-interfaces-0.10')
config.env.ParseConfig('pkg-config --cflags --libs taglib')
files = config.get_cpp_files()

View File

@ -1,5 +1,5 @@
// Copyright (c) 2012 Bryan Schumaker.
#include <gst/interfaces/propertyprobe.h>
//#include <gst/interfaces/propertyprobe.h>
#include <audio.h>
#include <prefs.h>
#include <print.h>