diff options
Diffstat (limited to 'community/cantata/PKGBUILD')
-rw-r--r-- | community/cantata/PKGBUILD | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/community/cantata/PKGBUILD b/community/cantata/PKGBUILD index a787619fd..c7b699bc6 100644 --- a/community/cantata/PKGBUILD +++ b/community/cantata/PKGBUILD @@ -1,23 +1,24 @@ -# $Id: PKGBUILD 101406 2013-11-24 23:10:10Z cinelli $ +# $Id: PKGBUILD 103640 2014-01-08 16:42:15Z bgyorgy $ # Maintainer: Federico Cinelli <cinelli@aur.archlinux.org> # Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: Mcder3 <mcder3[at]gmail[dot]com> # Contributor: MisterFred <mister.fred[at]free[dot]fr> pkgname=cantata -pkgver=1.1.3 +pkgver=1.2.2 pkgdesc="A KDE client for the music player daemon (MPD)" -pkgrel=2 +pkgrel=1 arch=('i686' 'x86_64') url="http://kde-apps.org/content/show.php/Cantata?content=147733" license=('GPL') -depends=('kdebase-runtime' 'libmtp' 'libcddb' 'libmusicbrainz5' 'mpg123' 'taglib-extras') +depends=('kdebase-runtime' 'libmtp' 'libcddb' 'libmusicbrainz5' 'mpg123' 'qjson' 'taglib-extras') optdepends=('perl-uri: dynamic playlist' 'mpd: playback') makedepends=('cmake' 'automoc4') install="$pkgname.install" source=("http://cantata.googlecode.com/files/$pkgname-$pkgver.tar.bz2") -md5sums=('22691c1ba9e0f94200f6cdb849be726a') +sha1sums=('89d84736ba4a43be7dc892af6fcbad5957075e19') + build() { cd "$srcdir/$pkgname-$pkgver" mkdir build @@ -25,7 +26,7 @@ build() { cmake . \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ - -DENABLE_PHONON=ON + -DENABLE_HTTP_STREAM_PLAYBACK=ON make } |