blob: 1834e217b0b4aab37ab7eeda622ded77e360a2ba (
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
|
# Maintainer: Taiko2k <captain dot gxj at gmail dot com>
pkgname=tauon-music-box
_pkgname=tauonmb
_gitname=TauonMusicBox
pkgver=6.8.1
pkgrel=1
pkgdesc="A modern streamlined music player"
arch=('any')
url="https://tauonmusicbox.rocks"
license=('GPL3')
depends=('python-pillow'
'python-pylast'
'python-pysdl2' # AUR
'python-send2trash'
'python-pylyrics' # AUR
'python-musicbrainzngs'
'python-mutagen'
'python-isounidecode' # AUR
'python-setproctitle'
'python-gobject'
'python-cairo'
'python-beautifulsoup4'
'python-requests'
'python-dbus'
'python-natsort'
'python-pulsectl' # AUR
'ffmpeg'
'flac'
'gst-plugins-good'
'gst-plugins-bad'
'noto-fonts-extra'
'noto-fonts'
'sdl2_image'
'xdg-utils'
'mpg123'
'libpulse'
'opusfile'
'libvorbis'
'libappindicator-gtk3'
'libopenmpt' # AUR
)
optdepends=('noto-fonts-cjk: Matching font for CJK characters'
'p7zip: 7z archive extraction support'
'unrar: RAR archive extraction support'
'python-plexapi: Plex streaming'
'python-pypresence: Discord status support'
'python-tekore: Spotify playback control'
'picard: Recommended tag editor'
'gst-plugins-ugly: For GStreamer WMA support'
)
source=("$pkgname-$pkgver.tar.gz::https://github.com/Taiko2k/TauonMusicBox/archive/v$pkgver.tar.gz")
build() {
cd "$_gitname-$pkgver"
python compile-translations.py
bash compile-phazor.sh
}
package() {
cd "$_gitname-$pkgver"
install -Dm755 tauon.py -t "$pkgdir/opt/$pkgname"
install -d "$pkgdir/usr/bin"
ln -s "/opt/$pkgname/tauon.py" "$pkgdir/usr/bin/$_pkgname"
install -Dm644 input.txt -t "$pkgdir/opt/$pkgname"
cp -r assets templates theme t_modules lib "$pkgdir/opt/$pkgname"
for t in de es fr_FR hu id ja_JP nb_NO pt pt_BR pt_PT ru sv zh_CN; do
install -Dm644 locale/${t}/LC_MESSAGES/*.mo -t "$pkgdir/usr/share/locale/${t}/LC_MESSAGES"
done
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/tauonmb.sh"
install -Dm755 "extra/tauonmb.sh" "$pkgdir/usr/bin/tauon"
}
md5sums=('cda300b768ae13f6b3db4b05c0768047')
|