FFmpeg-Builds/scripts.d/45-x11/10-xcbproto.sh

37 lines
679 B
Bash
Executable File

#!/bin/bash
SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/proto/xcbproto.git"
SCRIPT_COMMIT="cfcc51836c1f2c174b67073cc8bed92e7e9c9569"
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0
}
ffbuild_dockerdl() {
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" xcbproto
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR"/xcbproto
autoreconf -i
local myconf=(
--prefix="$FFBUILD_PREFIX"
)
if [[ $TARGET == linux* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}"
make -j$(nproc)
make install
}