Date: Wednesday, March 1, 2023 @ 18:25:06
Author: arojas
Revision: 1406092
archrelease: copy trunk to community-staging-x86_64
Added:
cantata/repos/community-staging-x86_64/
cantata/repos/community-staging-x86_64/PKGBUILD
(from rev 1406091, cantata/trunk/PKGBUILD)
----------+
PKGBUILD | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
Copied: cantata/repos/community-staging-x86_64/PKGBUILD (from rev 1406091,
cantata/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2023-03-01 18:25:06 UTC (rev 1406092)
@@ -0,0 +1,29 @@
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Federico Cinelli <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+# Contributor: Mcder3 <mcder3[at]gmail[dot]com>
+# Contributor: MisterFred <mister.fred[at]free[dot]fr>
+
+pkgname=cantata
+pkgver=2.5.0
+pkgrel=3
+pkgdesc='Qt5 client for the music player daemon (MPD)'
+arch=(x86_64)
+url='https://github.com/CDrummond/cantata'
+license=(GPL3)
+depends=(libmtp libmusicbrainz5 mpg123 qt5-multimedia qt5-svg taglib
media-player-info libcdio-paranoia udisks2 libcddb)
+optdepends=('perl-uri: dynamic playlist' 'mpd: playback' 'ffmpeg: ReplayGain
support' 'libebur128: ReplayGain support'
+ 'sshfs: remote devices support')
+makedepends=(cmake qt5-tools ffmpeg libebur128)
+source=(https://github.com/CDrummond/cantata/releases/download/v$pkgver/$pkgname-$pkgver.tar.bz2)
+sha256sums=('eb7e00ab3f567afaa02ea2c86e2fe811a475afab93182b95922c6eb126821724')
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}