blob: 73b5740daaacaca0ae59f73a619712b0170bc40c (
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
|
# Maintainer: artist <artist@artixlinux.org>
# Maintainer: callmetango
# Contributor: Andreas Radke <andyrtr@archlinux.org>
# Contributor: Laurent Carlier <lordheavym@gmail.com>
pkgname=xlibre-input-libinput
_pkgname="${pkgname//xlibre/xf86}"
pkgver=25.0.1
pkgrel=1
pkgdesc="Generic input driver for the XLibre Xserver based on libinput"
arch=('x86_64')
license=('MIT')
url="https://github.com/X11Libre/xf86-input-libinput"
depends=('libinput' 'glibc')
makedepends=('xlibre-xserver-devel' 'X-ABI-XINPUT_VERSION=26.0' 'libxi' 'libx11' 'xorgproto')
provides=('xf86-input-libinput')
conflicts=('xf86-input-libinput' 'X-ABI-XINPUT_VERSION<26' 'X-ABI-XINPUT_VERSION>=27')
groups=('xlibre-drivers')
source=("${url}/archive/refs/tags/xlibre-${_pkgname}-${pkgver}.tar.gz")
sha512sums=('e11920ace1780981ee4f7c54f7da2a1fcaa78dde37e880f664fb8d8b610ce7b79003f8c5409579a82c751cceb0aeefa084344e3c5c9f53c2cbf6df87886200ef')
build() {
arch-meson ${_pkgname}-xlibre-${_pkgname}-${pkgver} build \
-D xorg-conf-dir=/usr/share/X11/xorg.conf.d/
ninja -C build
}
package() {
DESTDIR="$pkgdir" ninja -C build install
}
|