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

34 lines
633 B
Bash
Raw Normal View History

2021-07-14 21:44:25 +00:00
#!/bin/bash
XPROTO_REPO="https://cgit.freedesktop.org/xorg/proto/xorgproto.git"
2021-12-05 20:10:10 +00:00
XPROTO_COMMIT="914d8f5e0f469cd0416364dd008e9eea752bf703"
2021-07-14 21:44:25 +00:00
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0
}
ffbuild_dockerbuild() {
git-mini-clone "$XPROTO_REPO" "$XPROTO_COMMIT" xproto
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
}