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

40
scripts.d/45-x11/50-libxext.sh Executable file
View File

@ -0,0 +1,40 @@
#!/bin/bash
LIBXEXT_REPO="https://gitlab.freedesktop.org/xorg/lib/libxext.git"
LIBXEXT_COMMIT="47904063048fa6ef6e8e16219ddef4d14d5d9a4b"
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$LIBXEXT_REPO" "$LIBXEXT_COMMIT" libxext
cd libxext
autoreconf -i
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
--without-xmlto
--without-fop
--without-xsltproc
--without-lint
)
if [[ $TARGET == linux* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}"
make -j$(nproc)
make install
}