blob: 7ead21777712abf7237ad8c8d504ea2c26735dad (
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
|
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
# Contributor: Peter <your@email.com>
pkgname=ytm-player
pkgver=1.7.0
pkgrel=1
pkgdesc="A full-featured YouTube Music TUI client with vim-style navigation"
arch=('any')
url="https://github.com/peternaame-boop/${pkgname}"
license=('MIT')
depends=(
'mpv'
'python'
'python-aiosqlite'
'python-click'
'python-mpv'
'python-pillow'
'python-textual>=7.0'
'python-ytmusicapi'
'yt-dlp'
)
makedepends=(
'git'
'python-build'
'python-installer'
'python-hatchling'
)
optdepends=(
'python-anyascii: lyrics transliteration to ASCII'
'python-dbus-next: MPRIS media key support'
'python-pylast: Last.fm scrobbling'
'python-pypresence: Discord Rich Presence'
'python-spotipy: Spotify playlist import (AUR)'
'python-thefuzz: Spotify import fuzzy matching (AUR)'
)
provides=("${pkgname%%-player}")
conflicts=("${pkgname}"{-git,-bin})
source=("${pkgname}-${pkgver}.tgz::${url}/archive/v${pkgver}.tar.gz")
sha256sums=('e1a20383fc06381bfd4131859fb7c875ed7bc1152fa178fa15bc7e81d215fbf4')
build() {
cd "${pkgname}-${pkgver}" || exit
python -m build --wheel --no-isolation
}
package() {
cd "${pkgname}-${pkgver}" || exit
python -m installer --destdir="${pkgdir}" dist/*.whl
install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/LICENSE"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
|