Add X11 and all of its friends

This commit is contained in:
BtbN 2021-07-14 23:44:25 +02:00
parent 4b9fdabe83
commit f48d93e470
11 changed files with 357 additions and 2 deletions

33
scripts.d/45-x11/10-xproto.sh Executable file
View file

@ -0,0 +1,33 @@
#!/bin/bash
XPROTO_REPO="https://gitlab.freedesktop.org/xorg/proto/xorgproto.git"
XPROTO_COMMIT="a0ed054ee2c334941dfe9eaa7bcfdbbe6907e1b5"
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$XPROTO_REPO" "$XPROTO_COMMIT" xproto
cd xproto
autoreconf -i
local myconf=(
--prefix="$FFBUILD_PREFIX"
)
if [[ $TARGET == linux* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}"
make -j$(nproc)
make install
}