blob: e7233516b5bfaa76ce1b15ac92f8c92fc8bd8659 (
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
|
# Maintainer: Julien Hartmann <juli1.hartmann@gmail.com>
pkgname=keyleds
pkgver=1.1.0
pkgrel=1
pkgdesc="➤ Advanced RGB LED animation driver for G213, G410, G513, G610, G810, G910 and GPro"
arch=('i686' 'x86_64')
url="https://github.com/spectras/keyleds"
license=('GPL3')
groups=()
depends=(
'libuv'
'libx11'
'libxi'
'libxml2'
'libyaml'
'luajit'
'systemd'
)
makedepends=(
'cmake>=3.0'
)
optdepends=()
backup=('etc/keyledsd.conf')
options=()
install=
source=("https://github.com/spectras/keyleds/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
build() {
cd "$pkgname-$pkgver/build"
cmake -DCMAKE_BUILD_TYPE=MinSizeRel -DCMAKE_INSTALL_PREFIX:PATH=/usr -DCMAKE_INSTALL_LIBDIR:PATH=lib ..
make
gzip -9 ../keyledsd/keyledsd.1 -c > keyledsd.1.gz
gzip -9 ../keyledsctl/keyledsctl.1 -c > keyledsctl.1.gz
}
package() {
cd "$pkgname-$pkgver/build"
make DESTDIR="$pkgdir/" install
cd ..
install -m 644 -D keyledsd/keyledsd.conf.sample "$pkgdir/etc/keyledsd.conf"
install -d "$pkgdir/etc/xdg/autostart"
ln -s /usr/share/keyledsd/keyledsd.desktop "$pkgdir/etc/xdg/autostart/"
install -m 644 -D logitech.rules "$pkgdir/usr/share/keyledsd/logitech.rules"
install -d "$pkgdir/usr/lib/udev/rules.d/"
ln -s /usr/share/keyledsd/logitech.rules "$pkgdir/usr/lib/udev/rules.d/70-logitech-hidpp.rules"
install -m 644 -D build/keyledsd.1.gz "$pkgdir/usr/share/man/man1/keyledsd.1"
install -m 644 -D build/keyledsctl.1.gz "$pkgdir/usr/share/man/man1/keyledsctl.1"
}
md5sums=('7b79f2d3daed5953e05f4b57d7808433')
|