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

34 lines
644 B
Bash
Raw Normal View History

2021-07-14 21:44:25 +00:00
#!/bin/bash
XCBPROTO_REPO="https://cgit.freedesktop.org/xorg/proto/xcbproto.git"
2021-12-31 20:48:23 +00:00
XCBPROTO_COMMIT="70ca65fa35c3760661b090bc4b2601daa7a099b8"
2021-07-14 21:44:25 +00:00
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
}