mirror of
https://github.com/X11Libre/xserver.git
synced 2026-01-26 14:03:17 +00:00
Our new automatic mirrors have a special prefix, so we need to fixup the URLs. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
24 lines
927 B
Bash
Executable File
24 lines
927 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. .github/scripts/util.sh
|
|
|
|
mkdir -p $X11_BUILD_DIR
|
|
cd $X11_BUILD_DIR
|
|
|
|
build_meson rendercheck $(fdo_mirror rendercheck) rendercheck-1.6
|
|
if [ "$X11_OS" = "Linux" ]; then
|
|
build_meson drm $(fdo_mirror drm) libdrm-2.4.121 -Domap=enabled
|
|
fi
|
|
build_meson libxcvt $(fdo_mirror libxcvt) libxcvt-0.1.0
|
|
build_meson xorgproto $(fdo_mirror xorgproto) xorgproto-2024.1
|
|
|
|
# really must be build via autoconf instead of meson, otherwise piglit wont find the test programs
|
|
build_ac_xts xts $(fdo_mirror xts) aae51229af810efba24412511f60602fab53eded
|
|
|
|
clone_source piglit $(fdo_mirror piglit) 28d1349844eacda869f0f82f551bcd4ac0c4edfe
|
|
|
|
echo '[xts]' > piglit/piglit.conf
|
|
echo "path=$X11_BUILD_DIR/xts" >> piglit/piglit.conf
|