blob: 20539a87d3f61be6a0f024537fc7f110bcc24af0 (
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
|
# Maintainer: Fabian Bornschein <fabiscafe@archlinux.org>
pkgname=high-tide
pkgver=r239.d0531d8
pkgrel=1
pkgdesc="Linux client for TIDAL streaming service"
url="https://github.com/Nokse22/high-tide"
arch=(any)
license=(GPL-3.0-or-later)
depends=(
dconf
glib2
gstreamer
gtk4
hicolor-icon-theme
libadwaita
libsecret
python
python-gobject
python-tidalapi
)
makedepends=(
blueprint-compiler
git
meson
)
source=("git+https://github.com/Nokse22/high-tide.git")
b2sums=('SKIP')
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
}
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"
}
|