blob: 758719686b854a99a9205cfef6f9d999799e1618 (
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
|
# Maintainer: Torge Matthies <openglfreak at googlemail dot com>
# Contributor: Filipe LaĆns (FFY00) <lains@archlinux.org>
_pkgname=libratbag
pkgname=libratbag-git
pkgver=0.11.r7.47cc5fc
pkgrel=1
pkgdesc='A DBus daemon to configure gaming mice - git version'
arch=('x86_64')
url='https://github.com/libratbag/libratbag'
license=('MIT')
depends=('glib2' 'libevdev' 'libudev.so' 'libunistring' 'json-glib' 'python' 'python-evdev')
optdepends=('linux: Linux 5.2 is required for Logitech wireless devices')
makedepends=('meson' 'swig' 'git' 'python-sphinx' 'python-sphinx_rtd_theme')
checkdepends=('check' 'valgrind' 'python-gobject' 'python-lxml')
source=('git+https://github.com/libratbag/libratbag.git')
sha512sums=('SKIP')
provides=('libratbag' "libratbag=$pkgver" 'ratbagd' 'liblur')
conflicts=('libratbag' 'ratbagd' 'liblur')
pkgver() {
cd "$srcdir/$_pkgname"
git describe | sed 's/^v//; s/-/.r/; s/-g/./'
}
prepare() {
cd "$srcdir/$_pkgname"
sed -i 's|sphinx-build3|sphinx-build|' doc/meson.build
}
build() {
cd "$srcdir/$_pkgname"
mkdir -p build
cd build
local check
if (( CHECKFUNC )); then
check=true
else
check=false
fi
arch-meson .. \
-Dsystemd-unit-dir=/usr/lib/systemd/system \
-Ddocumentation=true \
-Dtests="$check"
ninja
}
check() {
cd "$srcdir/$_pkgname"
cd build
meson test --no-rebuild
}
package() {
cd "$srcdir/$_pkgname"
cd build
DESTDIR="$pkgdir" ninja install
# Install documentation
install -dm 755 "$pkgdir"/usr/share/doc/$pkgname
cp -r -a --no-preserve=ownership doc/html "$pkgdir"/usr/share/doc/$pkgname
# Install license
install -Dm 644 ../COPYING "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
}
|