FFmpeg-Builds/scripts.d/45-x11/60-libxv.sh

59 lines
1.1 KiB
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/lib/libxv.git"
2022-12-02 15:21:37 +00:00
SCRIPT_COMMIT="7afb4d5b020780f8081564bfcc8ed3df7515899f"
2021-07-14 21:44:25 +00:00
ffbuild_enabled() {
[[ $TARGET != linux* ]] && return -1
[[ $ADDINS_STR == *4.4* ]] && return -1
return 0
}
ffbuild_dockerbuild() {
2022-07-12 15:54:12 +00:00
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" libxv
2021-07-14 21:44:25 +00:00
cd libxv
autoreconf -i
local myconf=(
--prefix="$FFBUILD_PREFIX"
--enable-shared
--disable-static
2021-07-14 21:44:25 +00:00
--with-pic
--without-lint
)
2022-07-06 12:55:26 +00:00
if [[ $TARGET == linuxarm64 ]]; then
myconf+=(
--disable-malloc0returnsnull
)
fi
2021-07-14 21:44:25 +00:00
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
gen-implib "$FFBUILD_PREFIX"/lib/{libXv.so.1,libXv.a}
rm "$FFBUILD_PREFIX"/lib/libXv{.so*,.la}
2021-07-14 21:44:25 +00:00
}
ffbuild_configure() {
2021-07-14 22:42:39 +00:00
echo --enable-xlib
2021-07-14 21:44:25 +00:00
}
ffbuild_unconfigure() {
echo --disable-xlib
}