blob: 83ef230756f61a810b652a38471ec4f8916e20b1 (
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
|
# Maintainer: bilabila <bilabila@qq.com>
_pkgname=libinput
_patch=multiplier.patch
pkgname=$_pkgname-multiplier
pkgver=1.26.2
pkgrel=1
pkgdesc='libinput with scroll multiplier patch'
arch=(x86_64)
url=https://gitlab.freedesktop.org/libinput/libinput
provides=($_pkgname=$pkgver)
conflicts=($_pkgname)
license=(MIT)
depends=(mtdev systemd libevdev libwacom systemd-libs glibc)
makedepends=(gtk4 meson wayland-protocols check)
checkdepends=('python-pytest')
optdepends=('gtk4: libinput debug-gui'
'python-pyudev: libinput measure'
'python-libevdev: libinput measure'
'python-libevdev: libinput measure'
'python-yaml: used by various tools')
source=(https://gitlab.freedesktop.org/libinput/libinput/-/archive/$pkgver/$_pkgname-$pkgver.tar.bz2
$_patch)
sha256sums=(e2dbbf515905086dc3f8c8536d326e04012f5716b8b047bb3392a17b13ca78ec
c8cdf1aa512d347e88e48cb8efdba1a8d56640d4048e3e8a5e6d14fa83e32fde)
prepare() {
cd "${srcdir}"/$_pkgname-$pkgver
patch -Np1 -i ../$_patch
}
build() {
arch-meson $_pkgname-$pkgver build \
-D udev-dir=/usr/lib/udev \
-D documentation=false
# Print config
# meson configure build
meson compile -C build
}
check() {
meson test -C build --print-errorlogs
}
package() {
meson install -C build --destdir "$pkgdir"
install -Dvm644 $_pkgname-$pkgver/COPYING "$pkgdir"/usr/share/licenses/$_pkgname/LICENSE
}
|