blob: 5800cd647088708f426cad6a15ee6bbc2de15990 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
# Contributor: goetzc
# Contributor: Kim Scarborough <sluggo@unknown.nu>
pkgname=cantata-qt6-git
pkgver=3.0.2.r5.ge925ef5
pkgrel=1
pkgdesc="Qt6 graphical client for Music Player Daemon (MPD), nullobsi fork"
arch=(x86_64 i686 aarch64 armv7h)
url="https://github.com/nullobsi/cantata"
license=(GPL3)
depends=(qt6-base
qt6-multimedia
qt6-svg
libcdio-paranoia
libmtp
libmusicbrainz5
libcddb
taglib
libebur128
media-player-info
mpg123
#taglib-extras
udisks2
ffmpeg
avahi gcc-libs zlib glibc
)
makedepends=(git cmake qt6-tools)
optdepends=('perl-uri: Dynamic playlist'
'mpd: Playback')
conflicts=(cantata)
provides=(cantata)
source=("cantata-nullobsi::git+https://github.com/nullobsi/cantata.git")
sha256sums=('SKIP')
pkgver() {
cd "cantata-nullobsi"
git describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cmake -B build -S "cantata-nullobsi" -Wno-dev \
-DQT_DIR=/usr/lib/cmake/Qt6 \
-DCMAKE_BUILD_TYPE=None \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBEXECDIR=/usr/bin
cmake --build build
}
package() {
DESTDIR="${pkgdir}" cmake --install build
}
|