mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
33 lines
1.0 KiB
Bash
33 lines
1.0 KiB
Bash
# Maintainer: H W Tovetjärn (totte) <totte@tott.es>
|
|
# Contributors: (Mcder3) <mcder3@gmail.com>
|
|
# (SteveK) <stevekej@gmail.com>
|
|
|
|
pkgname=cantata
|
|
pkgver=1.5.1
|
|
pkgrel=4
|
|
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' 'mpg123' 'ffmpeg' 'libcddb')
|
|
depends=('kdelibs' 'qjson' 'taglib' 'libmtp' 'taglib-extras')
|
|
optdepends=('ffmpeg: ReplayGain detection'
|
|
'mpg123: ReplayGain detection'
|
|
'perl-uri: Dynamic playlist support'
|
|
'cdparanoia: Read/rip Audio CDs')
|
|
source=("https://drive.google.com/uc?export=download&id=0Bzghs6gQWi60UktwaTRMTjRIUW8")
|
|
sha1sums=('595f81a5c29e187c4ba8e6c1dde764d18d3726ee')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
mkdir -p build && cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr .. -DENABLE_HTTP_STREAM_PLAYBACK=ON -DENABLE_REMOTE_DEVICES=ON -DENABLE_KDE=On
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver/build
|
|
make DESTDIR=$pkgdir install
|
|
}
|