blob: 704c8abf7de2050db383f1f9c774b5cee7e3bd5e (
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
103
104
105
106
|
# Maintainer: xiota / aur.chaotic.cx
# Contributor: fsyy <fossy2001 at web.de>
## useful links
# https://streamdeck-linux-gui.github.io/streamdeck-linux-gui/
# https://github.com/streamdeck-linux-gui/streamdeck-linux-gui"
## options
: ${_build_git:=true}
unset _pkgtype
[[ "${_build_git::1}" == "t" ]] && _pkgtype+="-git"
## basic info
_pkgname="streamdeck-ui"
pkgname="$_pkgname${_pkgtype:-}"
pkgver=4.1.0.r10.g6a3beb04
pkgrel=1
pkgdesc="Frontend for the Elgato Stream Deck"
url="https://github.com/streamdeck-linux-gui/streamdeck-linux-gui"
license=('MIT')
arch=('any')
# main package
depends=(
#'python-xcffib'
'pyside6'
'python'
'python-cairosvg'
'python-evdev'
'python-filetype'
'python-importlib-metadata'
'python-pillow'
'python-setuptools'
# AUR
'python-elgato-streamdeck'
'python-pynput'
)
makedepends=(
'git'
'python-build'
'python-installer'
'python-poetry'
'python-wheel'
)
optdepends=(
'gnome-shell-extension-appindicator: tray icon support gnome-shell'
)
if [ "${_build_git::1}" != "t" ] ; then
# normal package
_pkgsrc="$_pkgname"
_pkgext="tar.gz"
source+=("$_pkgsrc"::"git+$url.git#tag=v${pkgver%%.r*}")
sha256sums+=('SKIP')
pkgver() {
echo "${pkgver%%.r*}"
}
else
# git package
provides=("$_pkgname=${pkgver%%.r*}")
conflicts=("$_pkgname")
_pkgsrc="$_pkgname"
source+=("$_pkgsrc"::"git+$url.git")
sha256sums+=('SKIP')
pkgver() {
cd "$_pkgsrc"
git describe --long --tags --abbrev=8 --exclude='*[a-zA-Z][a-zA-Z]*' \
| sed -E 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
}
fi
source+=(
"60-streamdeck.rules"
"streamdeck-ui.desktop"
"streamdeck.png"
"streamdeck.service"
)
sha256sums+=(
'cc633ad9097763b3a488efe609ce95186eeed07a8cbfc83e15869db422acbf5d'
'745bbc947cfe4536e52721ef65db75c599903c0ab3450fbbf96c44e322e42c4c'
'03726bef65cec1a2ff4bb0241e021d112bf8b5a9a90ca0e3ebeba34358b281fe'
'f3350b2db661c0eebd8bbe3305d81d0189aa24552c286a9302484a32845526e0'
)
build() {
cd "$_pkgsrc"
DISABLE_CONAN=ON python -m build --wheel --no-isolation --skip-dependency-check
}
package() {
cd "$_pkgsrc"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 "$srcdir/60-streamdeck.rules" -t "$pkgdir/usr/lib/udev/rules.d/"
install -Dm644 "$srcdir/streamdeck.service" -t "$pkgdir/usr/lib/systemd/user/"
install -Dm644 "$srcdir/streamdeck-ui.desktop" -t "$pkgdir/usr/share/applications/"
install -Dm644 "$srcdir/streamdeck.png" -t "$pkgdir/usr/share/pixmaps/"
install -Dm644 LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
}
|