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

34 lines
635 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/xorgproto.git"
2022-07-13 15:08:17 +00:00
SCRIPT_COMMIT="912e050d8df0fc3d034c8b03d8afe37b9ce15402"
2021-07-14 21:44:25 +00:00
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0
}
ffbuild_dockerbuild() {
2022-07-12 15:54:12 +00:00
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" xproto
2021-07-14 21:44:25 +00:00
cd xproto
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
}