blob: 71deda6a83559a62977dae44d4b7dde95637c8f9 (
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
|
# Maintainer: Luca Weiss <luca (at) z3ntu (dot) xyz>
# Maintainer: Luke Horwell <code (at) horwell (dot) me>
_pkgname=polychromatic
pkgname=$_pkgname-git
pkgver=0.9.3.r8.g54590f8
pkgrel=1
pkgdesc='RGB lighting management front-end application for OpenRazer'
arch=('any')
license=('GPL-3.0-or-later')
source=("git+https://github.com/polychromatic/polychromatic.git")
url='https://github.com/polychromatic/polychromatic'
depends=(
libappindicator-gtk3
python
python-colorama
python-colour
python-gobject
python-openrazer
python-pyqt6
python-pyqt6-webengine
python-requests
python-setproctitle
qt6-svg
)
makedepends=(
meson
ninja
)
provides=('polychromatic')
conflicts=('polychromatic')
sha512sums=('SKIP')
pkgver() {
cd $_pkgname
git describe --tags --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
arch-meson $_pkgname build
ninja -C build
}
package() {
DESTDIR="$pkgdir" ninja -C build install
}
# vim:set ts=2 sw=2 et:
|