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

38
scripts.d/45-x11/10-xtrans.sh Executable file
View file

@ -0,0 +1,38 @@
#!/bin/bash
LIBXTRANS_REPO="https://gitlab.freedesktop.org/xorg/lib/libxtrans.git"
LIBXTRANS_COMMIT="3b5df889f58a99980a35a7b4a18eb4e7d2abeac4"
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$LIBXTRANS_REPO" "$LIBXTRANS_COMMIT" libxtrans
cd libxtrans
autoreconf -i
local myconf=(
--prefix="$FFBUILD_PREFIX"
--without-xmlto
--without-fop
--without-xsltproc
)
if [[ $TARGET == linux* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}"
make -j$(nproc)
make install
cp -r "$FFBUILD_PREFIX"/share/aclocal/. /usr/share/aclocal
}