mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Since all repo URLs and tags are following a common scheme, we can reduce boilderplate by computing them by driver and and version only. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
32 lines
1.2 KiB
Bash
Executable File
32 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. .github/scripts/util.sh
|
|
|
|
export PKG_CONFIG_PATH="/usr/local/lib/x86_64-linux-gnu/pkgconfig/:$PKG_CONFIG_PATH"
|
|
export ACLOCAL_PATH="/usr/share/aclocal:/usr/local/share/aclocal"
|
|
|
|
mkdir -p $DRV_BUILD_DIR
|
|
cd $DRV_BUILD_DIR
|
|
|
|
build_xf86drv_ac input-elographics 1.4.4.2
|
|
build_xf86drv_ac input-evdev 2.11.0.2
|
|
build_xf86drv_ac input-keyboard 2.1.0.2
|
|
build_xf86drv_ac input-libinput 1.5.1.0
|
|
build_xf86drv_ac input-mouse 1.9.6
|
|
build_xf86drv_ac input-synaptics 1.10.0.2
|
|
|
|
build_xf86drv_ac video-amdgpu 23.0.0.5
|
|
build_xf86drv_ac video-apm 1.3.0.3
|
|
build_xf86drv_ac video-ati 22.0.0.3
|
|
build_xf86drv_ac video-dummy 0.4.1.3
|
|
build_xf86drv_ac video-geode 2.18.1.3
|
|
build_xf86drv_ac video-intel 3.0.0.3
|
|
build_xf86drv_ac video-nouveau 1.0.18.3
|
|
build_xf86drv_ac video-omap 0.4.5.2
|
|
build_xf86drv_ac video-qxl 0.1.6.2
|
|
build_xf86drv_ac video-r128 6.13.0.2
|
|
build_xf86drv_ac video-vesa 2.6.0.2
|
|
build_xf86drv_ac video-vmware 13.4.0.3
|