diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-04-19 04:00:43 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-04-19 04:00:43 +0000 |
commit | 4d8724d2ae72ab2ea20a9ad299dd36f33bda4658 (patch) | |
tree | 5e022d124eb60b93d19e96a0d9c0e8532be87a6e /community/cantata | |
parent | f8a4eefb2bb008f302349db07da4a75e746a1aeb (diff) |
Sat Apr 19 03:57:19 UTC 2014
Diffstat (limited to 'community/cantata')
-rw-r--r-- | community/cantata/PKGBUILD | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/community/cantata/PKGBUILD b/community/cantata/PKGBUILD index c7b699bc6..20b2b5fb8 100644 --- a/community/cantata/PKGBUILD +++ b/community/cantata/PKGBUILD @@ -1,23 +1,24 @@ -# $Id: PKGBUILD 103640 2014-01-08 16:42:15Z bgyorgy $ +# $Id: PKGBUILD 109795 2014-04-18 17:39:03Z bpiotrowski $ # 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.2.2 -pkgdesc="A KDE client for the music player daemon (MPD)" -pkgrel=1 +pkgver=1.3.3 +pkgrel=2 +pkgdesc="Qt5 client for the music player daemon (MPD)" arch=('i686' 'x86_64') -url="http://kde-apps.org/content/show.php/Cantata?content=147733" +url="https://code.google.com/p/cantata/" license=('GPL') -depends=('kdebase-runtime' 'libmtp' 'libcddb' 'libmusicbrainz5' 'mpg123' 'qjson' 'taglib-extras') +depends=('qt5-multimedia' 'qt5-svg' 'libmtp' 'libcddb' 'libmusicbrainz5' 'mpg123' + 'taglib-extras' 'hicolor-icon-theme') optdepends=('perl-uri: dynamic playlist' - 'mpd: playback') -makedepends=('cmake' 'automoc4') + 'mpd: playback') +makedepends=('cmake' 'qt5-tools' 'qt5-svg') install="$pkgname.install" -source=("http://cantata.googlecode.com/files/$pkgname-$pkgver.tar.bz2") -sha1sums=('89d84736ba4a43be7dc892af6fcbad5957075e19') +source=(ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname-$pkgver.tar.bz2) +md5sums=('67053cfde9eb5c821483acc9c4961e36') build() { cd "$srcdir/$pkgname-$pkgver" @@ -26,13 +27,14 @@ build() { cmake . \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_BUILD_TYPE=Release \ - -DENABLE_HTTP_STREAM_PLAYBACK=ON + -DENABLE_HTTP_STREAM_PLAYBACK=ON \ + -DENABLE_KDE=OFF -DENABLE_QT5=ON make } package() { cd "$srcdir/$pkgname-$pkgver" - + make DESTDIR="$pkgdir" PREFIX="/usr" install } |