mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 18:42:12 +08:00
36 lines
919 B
Bash
36 lines
919 B
Bash
pkgname=cantata
|
|
pkgver=2.0.0
|
|
pkgrel=2
|
|
pkgdesc='Qt5 client for the music player daemon (MPD)'
|
|
arch=(x86_64)
|
|
url='https://code.google.com/p/cantata/'
|
|
license=(GPL)
|
|
depends=(qt5-svg libmtp libcddb libmusicbrainz5 mpg123 vlc taglib-extras cdparanoia media-player-info udisks2)
|
|
optdepends=('perl-uri: dynamic playlist' 'mpd: playback' 'ffmpeg: ReplayGain support')
|
|
makedepends=(cmake qt5-tools ffmpeg)
|
|
install=$pkgname.install
|
|
source=("https://github.com/CDrummond/cantata/releases/download/v$pkgver/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('dc7a65145692c5b2cac4c2c8a7c767c5')
|
|
|
|
prepare() {
|
|
mkdir -p build
|
|
}
|
|
|
|
build() {
|
|
cd build
|
|
|
|
PATH=/usr/lib/qt5/bin:$PATH
|
|
cmake ../$pkgname-$pkgver \
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DENABLE_HTTP_STREAM_PLAYBACK=ON \
|
|
-DENABLE_KDE=OFF -DENABLE_QT5=ON \
|
|
-DENABLE_UDISKS2=ON
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd build
|
|
make DESTDIR="$pkgdir" install
|
|
}
|