blob: bc657b9303ec7c8fc92972647fe50e88d0f32511 (
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
|
# Maintainer: Fabio 'Lolix' Loli <fabio.loli@disroot.org> -> https://github.com/FabioLolix
pkgname=strawberry-git
pkgver=0.9.3.r32.g31ecdbae
pkgrel=1
pkgdesc="A music player aimed at audio enthusiasts and music collectors"
arch=(x86_64 i686 arm armv6h armv7h aarch64)
url="https://www.strawberrymusicplayer.org/"
license=(GPL3)
depends=(chromaprint protobuf gst-plugins-base gst-plugins-good qt6-base
sqlite3 udisks2 dbus alsa-lib libcdio fftw
libpulse libimobiledevice libplist libusbmuxd libgpod libmtp)
makedepends=(git cmake boost qt6-tools gtest gmock)
optdepends=('gst-libav: additional codecs (i.e. AAC)'
'gst-plugins-bad: additional codecs (i.e. AAC)'
'gst-plugins-ugly: additional codecs')
provides=(strawberry)
conflicts=(strawberry)
source=("git+https://github.com/jonaski/strawberry.git")
sha256sums=('SKIP')
pkgver() {
cd "${pkgname%-git}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "${pkgname%-git}"
install -d strawberry-build
}
build() {
cd "${pkgname%-git}/strawberry-build"
cmake .. \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_WITH_QT6=ON \
-DENABLE_SPARKLE=OFF \
-DENABLE_VLC=OFF
make
}
package() {
cd "${pkgname%-git}/strawberry-build"
make DESTDIR="${pkgdir}" install
}
|