Add X11 and all of its friends
This commit is contained in:
parent
4b9fdabe83
commit
f48d93e470
11 changed files with 357 additions and 2 deletions
36
scripts.d/45-x11/20-libxau.sh
Executable file
36
scripts.d/45-x11/20-libxau.sh
Executable file
|
@ -0,0 +1,36 @@
|
|||
#!/bin/bash
|
||||
|
||||
LIBXAU_REPO="https://gitlab.freedesktop.org/xorg/lib/libxau.git"
|
||||
LIBXAU_COMMIT="d9443b2c57b512cfb250b35707378654d86c7dea"
|
||||
|
||||
ffbuild_enabled() {
|
||||
[[ $TARGET != linux* ]] && return -1
|
||||
return 0
|
||||
}
|
||||
|
||||
ffbuild_dockerbuild() {
|
||||
git-mini-clone "$LIBXAU_REPO" "$LIBXAU_COMMIT" libxau
|
||||
cd libxau
|
||||
|
||||
autoreconf -i
|
||||
|
||||
local myconf=(
|
||||
--prefix="$FFBUILD_PREFIX"
|
||||
--disable-shared
|
||||
--enable-static
|
||||
--with-pic
|
||||
)
|
||||
|
||||
if [[ $TARGET == linux* ]]; then
|
||||
myconf+=(
|
||||
--host="$FFBUILD_TOOLCHAIN"
|
||||
)
|
||||
else
|
||||
echo "Unknown target"
|
||||
return -1
|
||||
fi
|
||||
|
||||
./configure "${myconf[@]}"
|
||||
make -j$(nproc)
|
||||
make install
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue