blob: 6887e333fbaadb2da0f9ee2707ab9c2ec8c5c37e (
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
65
66
|
#Maintainer: quinnri <qheath@bu.edu>
#Contributor: Dråfølin <derg@drafolin.ch>
pkgname=high-tide-git
pkgver=1.2.0.r24.ga662d6c
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
python-pypresence
)
optdepends=(
'alsa-utils: Advanced details in ALSA device picker'
)
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"
}
|