# $Id: PKGBUILD 81241 2012-12-14 11:41:36Z andrea $ # Maintainer: Andrea Scarpino # Contributor: Mcder3 # Contributor: MisterFred pkgname=cantata pkgver=0.9.1 pkgdesc="A KDE client for the music player daemon (MPD)" pkgrel=1 arch=('i686' 'x86_64') url="http://kde-apps.org/content/show.php/Cantata?content=147733" license=('GPL') depends=('kdebase-runtime' 'taglib-extras' 'ffmpeg' 'mpg123' 'libmtp' 'speex') makedepends=('cmake' 'automoc4') install=${pkgname}.install source=("http://cantata.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2") md5sums=('78e2f379fe9a0afd32e24de83f1c283e') build() { mkdir build cd build cmake ../${pkgname}-${pkgver} \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ -DENABLE_PHONON=ON make } package() { cd build make DESTDIR="${pkgdir}" install }