FFmpeg-Builds/scripts.d/45-x11/60-libglvnd.sh
2023-10-24 02:12:52 +02:00

42 lines
807 B
Bash
Executable File

#!/bin/bash
SCRIPT_REPO="https://gitlab.freedesktop.org/glvnd/libglvnd.git"
SCRIPT_COMMIT="62176c235ceca2c20f30777f5bc4195bd70391c4"
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR/$SELF"
mkdir build && cd build
local myconf=(
--prefix="$FFBUILD_PREFIX"
--buildtype=release
--default-library=static
-Dasm=enabled
-Dx11=enabled
-Degl=true
-Dglx=enabled
-Dgles1=true
-Dgles2=true
-Dheaders=true
)
if [[ $TARGET == linux* ]]; then
myconf+=(
--cross-file=/cross.meson
)
else
echo "Unknown target"
return -1
fi
meson "${myconf[@]}" ..
ninja -j"$(nproc)"
ninja install
}