blob: c6078a4beb41adc04642a5d4187bf0678c59577a (
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
|
# Maintainer: Jiri Tyr <jiri.tyr@gmail.com>
_pkg='keyleds'
pkgname="$_pkg-git"
pkgver='r295.1713616'
pkgrel='2'
pkgdesc='Advanced RGB LED driver/controller for G410, G513, G610, G810, G910 and GPro'
arch=('i686' 'x86_64')
url='https://github.com/spectras/keyleds'
license=('GPL3')
depends=(
'libuv'
'libx11'
'libxi'
'libxml2'
'libyaml'
'luajit'
'systemd'
)
makedepends=(
'cmake>=3.0'
)
backup=('etc/keyledsd.conf')
provides=("$_pkg")
conflicts=("$_pkg")
source=(
"git+https://github.com/spectras/$_pkg.git"
'pr74.patch'
)
sha256sums=(
'SKIP'
'a0edb3496655cce4a7e839af8a869e4c03ce5f3917e894df5b684b2a0ee111ad'
)
pkgver() {
cd "$srcdir/$_pkg"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
cd "$_pkg"
patch -Np1 -i ../pr74.patch
}
build() {
cd "$_pkg/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 "$_pkg/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"
}
|