Date: Friday, January 21, 2011 @ 13:57:11 Author: andrea Revision: 107145
phonon gstreamer backend Added: phonon-gstreamer/ phonon-gstreamer/repos/ phonon-gstreamer/trunk/ phonon-gstreamer/trunk/PKGBUILD ----------+ PKGBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) Added: phonon-gstreamer/trunk/PKGBUILD =================================================================== --- phonon-gstreamer/trunk/PKGBUILD (rev 0) +++ phonon-gstreamer/trunk/PKGBUILD 2011-01-21 18:57:11 UTC (rev 107145) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <[email protected]> + +pkgname=phonon-gstreamer +pkgver=4.4.4 +pkgrel=1 +arch=('i686' 'x86_64') +url="http://phonon.kde.org" +pkgdesc="Phonon GStreamer backend" +license=('LGPL') +depends=('gstreamer0.10-base-plugins') +makedepends=('cmake' 'automoc4' 'phonon' 'mesa') +provides=('phonon-backend') +source=("http://download.kde.org/stable/phonon/phonon-backend-gstreamer/${pkgver}/src/phonon-backend-gstreamer-${pkgver}.tar.bz2") +md5sums=('fa313a77db3da9df20bc8991352378cb') + +build() { + cd ${srcdir} + mkdir build + cd build + cmake ../phonon-backend-gstreamer-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd ${srcdir}/build + make DESTDIR=${pkgdir} install +}
