diff options
| author | Michael Hanson <hansonorders@verizon.net> | 2010-11-18 03:30:22 (GMT) | 
|---|---|---|
| committer | Michael Hanson <hansonorders@verizon.net> | 2010-11-18 03:30:22 (GMT) | 
| commit | da43248abaa5c1d1455e2e9e9af2013d74a89c14 (patch) | |
| tree | 33f2be01fb560d587499ed4b5034f0a166a85f39 | |
| parent | 87ad38528bf0358868bb6ff765f5a608ea26fcfb (diff) | |
| download | linhes_pkgbuild-da43248abaa5c1d1455e2e9e9af2013d74a89c14.zip linhes_pkgbuild-da43248abaa5c1d1455e2e9e9af2013d74a89c14.tar.gz linhes_pkgbuild-da43248abaa5c1d1455e2e9e9af2013d74a89c14.tar.bz2 | |
phonon: initial import for pyqt
| -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 +} + | 
