blob: 077d35ce4f580250c29bc438753372f31bc471ad (
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
|
# based on https://github.com/rbn42/panon/blob/master/PKGBUILD
# Maintainer: Philipp A. <flying-sheep@github.com>
# Contributor: Marcus Behrendt <marcus dot behrendt dot 86 et bigbrothergoogle>
# Contributor: Robin <rbn dot 86 et bigbrothergoogle>
_basename=panon
pkgname=plasma5-applets-$_basename
pkgver=0.4.6
pkgrel=4
pkgdesc="A Different Audio Spectrum Analyzer for KDE Plasma"
arch=('any')
url="https://github.com/rbn42/panon"
license=('GPL-3.0-or-later' 'WTFPL')
depends=(
'plasma-workspace'
'python-docopt'
'python-numpy'
'python-pillow'
'python-pyaudio'
'python-soundcard>=0.4.2' # compat with Python 3.10
'python-websockets'
'qt5-websockets'
'qt5-3d'
)
makedepends=('kpackage5' 'cmake')
source=(
"${_basename}-${pkgver}::https://github.com/rbn42/${_basename}/archive/v${pkgver}.tar.gz"
"https://raw.githubusercontent.com/williammalo/hsluv-glsl/master/hsluv-glsl.fsh"
hsluv-glsl_LICENSE.md::"https://raw.githubusercontent.com/williammalo/hsluv-glsl/master/LICENCE.md"
)
sha256sums=('a45bb5371620b17f788d5204222b21733ac8086bb76d8b8db58b8a96cc21c34c'
'1985bbfacfafcadf72582cfdb52103cceb853b0f9c818273ad179d6045c3f2cc'
'5ad083fe6cafbf17ca8ecba924c124b7bc3f43f95732d1712104ac05f5373875')
prepare() {
cd "$srcdir/$_basename-$pkgver"
install -Dm644 "$srcdir/hsluv-glsl.fsh" third_party/hsluv-glsl
install -Dm644 "$srcdir/hsluv-glsl_LICENSE.md" third_party/hsluv-glsl/LICENCE.md
}
build() {
cd "$srcdir/$_basename-$pkgver"
rm -rf build || true
mkdir -p build
cd build
cmake ../translations
make install DESTDIR=../plasmoid/contents/locale
}
package() {
cd "$srcdir/$_basename-$pkgver"
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/${_basename%-*}/LICENSE"
install -Dm644 third_party/hsluv-glsl/LICENCE.md "$pkgdir/usr/share/licenses/${_basename%-*}/hsluv-glsl/LICENCE.md"
rm -rf "$pkgdir/usr/share/plasma/plasmoids/" || true
kpackagetool5 -p "$pkgdir/usr/share/plasma/plasmoids/" -t Plasma/Applet -i plasmoid
rm -rf "$pkgdir/usr/share/plasma/plasmoids/panon/contents/scripts/soundcard"
# If an index is generated, remove it.
path_index="$pkgdir/usr/share/plasma/plasmoids/kpluginindex.json"
if [ -e "$path_index" ]; then
rm "$path_index"
fi
}
|