FFmpeg-Builds/scripts.d/45-x11/60-libglvnd.sh

43 lines
847 B
Bash
Raw Normal View History

2021-12-20 14:44:35 +00:00
#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://gitlab.freedesktop.org/glvnd/libglvnd.git"
2022-12-24 14:23:31 +00:00
SCRIPT_COMMIT="dba80d0158b587de91640fae5c0b420c23599d1e"
2021-12-20 14:44:35 +00:00
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0
}
ffbuild_dockerbuild() {
2022-07-12 15:54:12 +00:00
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" glvnd
2021-12-20 14:44:35 +00:00
cd glvnd
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
}