44 lines
1.4 KiB
Bash
44 lines
1.4 KiB
Bash
# POWER Maintainer: Alexander Baldeck <alex.bldck@gmail.com>
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
pkgname=libinput
|
|
pkgver=1.27.1
|
|
pkgrel=1
|
|
pkgdesc="Input device management and event handling library"
|
|
url="https://gitlab.freedesktop.org/libinput/libinput"
|
|
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
|
|
license=(MIT)
|
|
depends=('mtdev' 'libevdev' 'libwacom' 'systemd-libs' 'glibc')
|
|
# upstream doesn't recommend building docs
|
|
makedepends=('gtk4' 'meson' 'wayland-protocols' 'check') # 'doxygen' 'graphviz' 'python-sphinx' 'python-recommonmark'
|
|
checkdepends=('python-pytest')
|
|
optdepends=('gtk4: libinput debug-gui'
|
|
'python-pyudev: 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)
|
|
sha256sums=('641df745984baff8f6f822066b4e32f28482d267e95448158732eb2f65ea7fe9')
|
|
#validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF') # Peter Hutterer (Who-T) <office@who-t.net>
|
|
|
|
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"
|
|
}
|