mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
|
|
# Contributors: (Mcder3) <mcder3@gmail.com>
|
|
# (SteveK) <stevekej@gmail.com>
|
|
|
|
pkgname=cantata
|
|
pkgver=1.3.4
|
|
pkgrel=1
|
|
pkgdesc="KDE client for MPD (Music Player Daemon)"
|
|
arch=(x86_64)
|
|
url="http://kde-apps.org/content/show.php/Cantata?content=147733"
|
|
license=(GPL)
|
|
screenshot='http://kde-apps.org/CONTENT/content-pre1/147733-1.png'
|
|
makedepends=('cmake' 'automoc4' 'libbluray')
|
|
depends=('kdelibs')
|
|
optdepends=('taglib: tag edit dialog and UMS device support'
|
|
'libmtp: MTP device support'
|
|
'ffmpeg: ReplayGain detection'
|
|
'mpg123: ReplayGain detection'
|
|
'perl-uri: Dynamic playlist support'
|
|
'cdparanoia: Read/rip Audio CDs'
|
|
'libcddb: Audio CD support'
|
|
'libmusicbrainz: Audio CD support')
|
|
source=("https://drive.google.com/uc?export=download&id=0Bzghs6gQWi60WTYtaXk3c1IzNVU")
|
|
sha1sums=('f4a5f7394772f5aaa3d9806457cf17d5d80b77a0')
|
|
|
|
build() {
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
mkdir build && cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr .. -DENABLE_HTTP_STREAM_PLAYBACK=ON -DENABLE_REMOTE_DEVICES=ON
|
|
make
|
|
}
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}/build"
|
|
make DESTDIR=${pkgdir} install
|
|
}
|
|
|