diff options
Diffstat (limited to 'community/cantata/PKGBUILD')
-rw-r--r-- | community/cantata/PKGBUILD | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/community/cantata/PKGBUILD b/community/cantata/PKGBUILD index 54857cf3c..c98ee1f1b 100644 --- a/community/cantata/PKGBUILD +++ b/community/cantata/PKGBUILD @@ -1,27 +1,28 @@ -# $Id: PKGBUILD 75868 2012-09-04 07:29:32Z andrea $ +# $Id: PKGBUILD 80920 2012-12-06 21:02:34Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Mcder3 <mcder3[at]gmail[dot]com> # Contributor: MisterFred <mister.fred[at]free[dot]fr> pkgname=cantata -pkgver=0.8.3 +pkgver=0.9.0 pkgdesc="A KDE client for the music player daemon (MPD)" pkgrel=1 arch=('i686' 'x86_64' 'mips64el') url="http://kde-apps.org/content/show.php/Cantata?content=147733" license=('GPL') -depends=('kdebase-runtime' 'taglib-extras' 'ffmpeg' 'libmtp' 'mpg123' 'speex') +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=('10f58e255ecaf827af9c9cc63ca932da') +md5sums=('e05e7dd876b40b8351e03a1a939f9fe6') build() { mkdir build cd build cmake ../${pkgname}-${pkgver} \ -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_BUILD_TYPE=Release + -DCMAKE_BUILD_TYPE=Release \ + -DENABLE_PHONON=ON make } |