diff options
Diffstat (limited to 'abs/extra/phonon/PKGBUILD')
-rw-r--r-- | abs/extra/phonon/PKGBUILD | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/abs/extra/phonon/PKGBUILD b/abs/extra/phonon/PKGBUILD deleted file mode 100644 index 40b13d2..0000000 --- a/abs/extra/phonon/PKGBUILD +++ /dev/null @@ -1,53 +0,0 @@ -# $Id$ -# Maintainer: Andrea Scarpino <andrea@archlinux.org> - -pkgbase=phonon -pkgname=('phonon' 'phonon-xine' 'phonon-gstreamer') -pkgver=4.4.2 -pkgrel=3 -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 -} - |