mirror of
https://github.com/X11Libre/xf86-input-libinput.git
synced 2026-03-24 01:24:04 +00:00
We need newer xorgproto than what's in fedora as we depend on inputproto 2.3.99.1 or newer.
10 lines
294 B
Bash
Executable File
10 lines
294 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# we require at least inputproto >= 2.3.99.1 which has been released in xorgproto 2021.5
|
|
git clone https://gitlab.freedesktop.org/xorg/proto/xorgproto.git --depth 1 --branch=xorgproto-2021.5
|
|
pushd xorgproto
|
|
./autogen.sh
|
|
make -j${FDO_CI_CONCURRENT:-4} install
|
|
popd
|
|
rm -rf xorgproto
|