diff options
Diffstat (limited to 'extra/phonon-xine/PKGBUILD')
-rw-r--r-- | extra/phonon-xine/PKGBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/extra/phonon-xine/PKGBUILD b/extra/phonon-xine/PKGBUILD new file mode 100644 index 000000000..2d4dccfb1 --- /dev/null +++ b/extra/phonon-xine/PKGBUILD @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> + +pkgname=phonon-xine +pkgver=4.4.4 +pkgrel=1 +arch=('i686' 'x86_64') +url="http://phonon.kde.org" +pkgdesc="Phonon Xine backend" +license=('LGPL') +depends=('xine-lib') +makedepends=('cmake' 'automoc4' 'phonon') +provides=('phonon-backend') +source=("http://download.kde.org/stable/phonon/phonon-backend-xine/${pkgver}/src/phonon-backend-xine-${pkgver}.tar.bz2") +md5sums=('b127104e67538e573adeed3b2fb3bf55') + +build() { + cd ${srcdir} + mkdir build + cd build + cmake ../phonon-backend-xine-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd ${srcdir}/build + make DESTDIR=${pkgdir} install +} |