FFmpeg-Builds/scripts.d/45-x11/30-libxcb.sh

53 lines
1010 B
Bash
Raw Permalink 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/lib/libxcb.git"
2023-04-18 14:23:16 +00:00
SCRIPT_COMMIT="8935793f1f3751a6aa9d78955c7d6236177986de"
2021-07-14 21:44:25 +00:00
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
return 0
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR/$SELF"
2021-07-14 21:44:25 +00:00
autoreconf -i
local myconf=(
--prefix="$FFBUILD_PREFIX"
--enable-shared
--disable-static
2021-07-14 21:44:25 +00:00
--with-pic
--disable-devel-docs
)
if [[ $TARGET == linux* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
export CFLAGS="$RAW_CFLAGS"
export LDFLAFS="$RAW_LDFLAGS"
2021-07-14 21:44:25 +00:00
./configure "${myconf[@]}"
make -j$(nproc)
make install
for LIBNAME in "$FFBUILD_PREFIX"/lib/libxcb*.so.?; do
gen-implib "$LIBNAME" "${LIBNAME%%.*}.a"
rm "${LIBNAME%%.*}"{.so*,.la}
done
2021-07-14 21:44:25 +00:00
}
ffbuild_configure() {
echo --enable-libxcb
}
ffbuild_unconfigure() {
echo --disable-libxcb
}