blob: b0e8ccb07d1476d256ac7e1af29211931a582cba (
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
55
56
57
58
59
60
61
|
# Contributor: Michał Przybyś <michal@przybys.eu>
# Maintainer: Thomas Bork <sudoBash418@gmail.com>
pkgname=strawberry-qt5
pkgver=1.1.3
pkgrel=1
pkgdesc="A music player aimed at audio enthusiasts and music collectors (Qt5 version)"
arch=(x86_64)
url="https://strawberrymusicplayer.org/"
license=(GPL-3.0-or-later)
depends=(qt5-base
qt5-x11extras
abseil-cpp
alsa-lib
chromaprint
fftw
gcc-libs
gdk-pixbuf2
glib2
glibc
gst-plugins-base
gst-plugins-base-libs
gst-plugins-good
gstreamer
icu
libcdio
libebur128
libgpod
libmtp
libpulse
libx11
protobuf
sqlite
taglib
udisks2)
makedepends=(cmake
boost
qt5-tools)
optdepends=('gst-libav: additional codecs'
'gst-plugins-bad: additional codecs'
'gst-plugins-ugly: additional codecs')
provides=(strawberry)
conflicts=(strawberry)
source=("https://github.com/strawberrymusicplayer/strawberry/releases/download/${pkgver}/strawberry-${pkgver}.tar.xz")
sha256sums=('cc133169f03f7b966074023eef105028e334d3dad8a066adbe8e6bdc7c1ab8dd')
build() {
cmake -B build -S "strawberry-${pkgver}" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_WITH_QT5=on \
-DENABLE_VLC=off \
-DCMAKE_CXX_FLAGS="$CXXFLAGS -DQT_NO_DEBUG_OUTPUT"
cmake --build build
}
package() {
DESTDIR="${pkgdir}" cmake --install build
}
|