install -m644 -Dt "${pkgdir}/var/lib/xkb/" "xserver-${pkgbase}-${pkgver}"/xkb/README.compiled
This one breaks "cannot stat file" when trying to install bootstrap.
Finally I solved installation in 3 steps: 1. Modify xserver PKBUILD (comment that error above), add provides/conflicts with x86input.
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -114,8 +114,8 @@ package_xlibre-xserver() {
libpciaccess libdrm libxshmfence libxcvt) # FS#52949
# see xorg-server-*/hw/xfree86/common/xf86Module.h for ABI versions - we provide major numbers that drivers can depend on
# and /usr/lib/pkgconfig/xorg-server.pc in xorg-server-devel pkg
- provides=('xorg-server' 'X-ABI-VIDEODRV_VERSION=28.0' 'X-ABI-XINPUT_VERSION=26.0' 'X-ABI-EXTENSION_VERSION=11.0' 'x-server')
- conflicts=('xlibre-xserver-beta' 'xorg-server' 'nvidia-utils<=331.20' 'glamor-egl' 'xf86-video-modesetting')
+ provides=('xorg-server' 'X-ABI-VIDEODRV_VERSION=28.0' 'X-ABI-XINPUT_VERSION=26.0' 'X-ABI-EXTENSION_VERSION=11.0' 'x-server' 'xf86-input-libinput')
+ conflicts=('xlibre-xserver-beta' 'xorg-server' 'nvidia-utils<=331.20' 'glamor-egl' 'xf86-video-modesetting' 'xf86-input-libinput')
replaces=('glamor-egl' 'xf86-video-modesetting')
_install fakeinstall/usr/bin/{X,Xorg,gtf,Xfbdev}
Build and install this xserver version.
2. Build xlibre-input-libinput, install package build with flag -Udd, which will drop server installed in (1).
3. git stash in server folder and build / install original version.
Pinned Comments