blob: 383fd6956d1b7a3f0b2163aaa7529f3bb44915a9 (
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
62
63
64
|
#Maintainer: Dråfølin <derg@drafolin.ch>
pkgname=high-tide-git
pkgver=1.1.0.r1.ga2095c9
pkgrel=1
pkgdesc="Linux client for TIDAL streaming service"
url="https://github.com/Nokse22/high-tide"
arch=(any)
license=(GPL-3.0-or-later)
conflicts=('high-tide')
provides=("high-tide=${pkgver}")
depends=(
dconf
glib2
gstreamer
gst-plugins-base
gst-plugins-good
gtk4
hicolor-icon-theme
libadwaita
libportal
libsecret
org.freedesktop.secrets
python
python-gobject
'python-tidalapi>=0.8.6'
xdg-desktop-portal
)
optdepends=(
'alsa-utils: Advanced details in ALSA device picker'
'python-pypresence>=4.3.0.r27.gd6709d3: Discord Rich Presence support'
)
makedepends=(
blueprint-compiler
git
meson
)
source=("${pkgname}::git+https://github.com/Nokse22/high-tide.git")
b2sums=('SKIP')
pkgver() {
cd "$pkgname"
( set -o pipefail
git describe --tags --long --abbrev=7 2>/dev/null | sed 's/v//;s/\([^-]*-g\)/r\1/;s/-/./g'
)
}
prepare() {
cd $pkgname
}
build() {
arch-meson $pkgname build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs ||:
}
package() {
meson install -C build --destdir "$pkgdir"
}
|