blob: bc96afcd1c1d1328dbde1d7a75d8b097b8e5798b (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
# Maintainer: Martin Rys <https://rys.rs/contact>
# Maintainer: Taiko2k <captain dot gxj at gmail dot com>
pkgname=tauon-music-box-git
_pkgname=tauonmb
_gitname=Tauon
pkgver=8.2.3.r37.e4f499ff
pkgrel=1
pkgdesc='A modern music player'
arch=('x86_64' 'aarch64')
url='https://tauonmusicbox.rocks'
license=('GPL-3.0-or-later')
conflicts=("${pkgname%-git}")
depends=(
'python-pillow'
'python-pylast'
'python-pysdl3'
'python-send2trash'
'python-musicbrainzngs'
'python-mutagen'
'python-unidecode'
'python-setproctitle'
'python-gobject'
'python-cairo'
'python-beautifulsoup4'
'python-requests'
'python-dbus'
'python-natsort'
'python-websocket-client'
'libayatana-appindicator'
'libnotify'
'ffmpeg'
'flac'
'gtk3'
'kissfft'
'noto-fonts-extra'
'noto-fonts'
'sdl3_image'
'xdg-utils'
'mpg123'
'opusfile'
'wavpack'
'libvorbis'
'libopenmpt'
'libsamplerate'
'opencc'
'libgme'
'libpipewire'
)
makedepends=(
'miniaudio'
'git'
'pkgconf'
'python-build'
'python-installer')
optdepends=(
'noto-fonts-cjk: Matching font for CJK characters'
'picard: Recommended tag editor'
'p7zip: 7z archive extraction support'
'unrar: RAR archive extraction support'
'python-plexapi: Plex streaming support'
'python-pypresence: Discord status support'
'python-pychromecast: Chromecast stream support'
'python-jxlpy: JPEG XL image support'
'python-tekore: Spotify feature support'
'python-tidalapi: Tidal feature support'
'librespot: Spotify audio playback'
)
source=("${pkgname%-git}"::'git+https://github.com/Taiko2k/Tauon.git')
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${pkgname%-git}"
printf "%s" "$(git describe --tags --long --exclude "Pre-release*" | sed -e 's/\([^-]*-\)g/r\1/;s/-/./g' -e 's/^v//')"
}
prepare() {
# Use system kissfft instead of the expected cloned repository
sed -i 's|"src/phazor/kissfft/kiss_fftr.c", "src/phazor/kissfft/kiss_fft.c", ||g' tauon-music-box/pyproject.toml
sed -i 's|"samplerate"|"kissfft-float", "samplerate"|g' tauon-music-box/pyproject.toml
}
build() {
cd "${pkgname%-git}"
python -m build --wheel
}
package() {
cd "${pkgname%-git}"
python -m installer --destdir="${pkgdir}" dist/*.whl
install -Dm644 "extra/${_pkgname}.desktop" -t "${pkgdir}/usr/share/applications"
install -Dm644 "extra/${_pkgname}-symbolic.svg" -t "${pkgdir}/usr/share/icons/hicolor/symbolic/apps"
install -Dm644 "extra/${_pkgname}.svg" -t "${pkgdir}/usr/share/icons/hicolor/scalable/apps"
install -Dm755 "extra/tauonmb.sh" "${pkgdir}/opt/${pkgname%-git}/tauonmb.sh"
install -Dm755 "extra/tauonmb.sh" "${pkgdir}/usr/bin/tauon"
}
|