FFmpeg-Builds/scripts.d/45-x11/10-xcbproto.sh
2021-09-22 16:23:31 +02:00

33 lines
646 B
Bash
Executable file

#!/bin/bash
XCBPROTO_REPO="https://gitlab.freedesktop.org/xorg/proto/xcbproto.git"
XCBPROTO_COMMIT="f0db8b7d31a379fe26f6cc592be997c8ce5f0b2d"
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$XCBPROTO_REPO" "$XCBPROTO_COMMIT" xcbproto
cd 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
}