61debb00e5
Otherwise the entire build cache effectively invalidates the moment one script changes..
41 lines
807 B
Bash
Executable file
41 lines
807 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://gitlab.freedesktop.org/glvnd/libglvnd.git"
|
|
SCRIPT_COMMIT="179d7278d7485ceea2d440807be9d677d32aedc4"
|
|
|
|
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
|
|
}
|