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

37 lines
679 B
Bash
Raw Normal View History

2021-07-14 21:44:25 +00:00
#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://gitlab.freedesktop.org/xorg/proto/xcbproto.git"
2023-04-18 14:23:16 +00:00
SCRIPT_COMMIT="cfcc51836c1f2c174b67073cc8bed92e7e9c9569"
2021-07-14 21:44:25 +00:00
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0
}
ffbuild_dockerdl() {
2022-07-12 15:54:12 +00:00
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" xcbproto
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR"/xcbproto
2021-07-14 21:44:25 +00:00
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
}