diff options
Diffstat (limited to 'abs')
-rw-r--r-- | abs/extra/phonon/PKGBUILD | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/abs/extra/phonon/PKGBUILD b/abs/extra/phonon/PKGBUILD new file mode 100644 index 0000000..4a91d2d --- /dev/null +++ b/abs/extra/phonon/PKGBUILD @@ -0,0 +1,53 @@ +# $Id$ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgbase=phonon +pkgname=('phonon' 'phonon-xine' 'phonon-gstreamer') +pkgver=4.4.2 +pkgrel=2 +arch=('i686' 'x86_64') +url="http://phonon.kde.org" +license=('LGPL') +makedepends=('cmake' 'automoc4' 'qt' 'xine-lib' 'gstreamer0.10-base-plugins' 'mesa') +source=("http://download.kde.org/stable/${pkgname}/${pkgver}/${pkgbase}-${pkgver}.tar.bz2") +sha1sums=('c329d924fb75a89a9de8a4d799ff4dcd7ee3302e') + +build() { + cd ${srcdir} + mkdir build + cd build + cmake ../${pkgbase}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_SKIP_RPATH=ON \ + -DWITH_PulseAudio=OFF + make +} + +package_phonon(){ + pkgdesc="The multimedia API for KDE4" + depends=('qt' 'phonon-backend') + cd ${srcdir}/build/phonon + make DESTDIR=${pkgdir} install + cd ${srcdir}/build/includes + make DESTDIR=${pkgdir} install + cd ${srcdir}/build + install -Dm644 phonon.pc ${pkgdir}/usr/lib/pkgconfig/phonon.pc +} + +package_phonon-gstreamer(){ + pkgdesc="Phonon Gstreamer backend" + depends=('qt' 'gstreamer0.10-base-plugins') + provides=('phonon-backend') + cd ${srcdir}/build/gstreamer + make DESTDIR=${pkgdir} install +} + +package_phonon-xine(){ + pkgdesc="Phonon Xine backend" + depends=('qt' 'xine-lib') + provides=('phonon-backend') + cd ${srcdir}/build/xine + make DESTDIR=${pkgdir} install +} + |