FFmpeg-Builds/scripts.d/50-libbluray.sh
2025-04-07 20:21:54 +02:00

50 lines
975 B
Bash
Executable File

#!/bin/bash
SCRIPT_REPO="https://code.videolan.org/videolan/libbluray.git"
SCRIPT_COMMIT="4066744f4f4cf66d58fcb3e320813d788e9017ba"
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
./bootstrap
local myconf=(
--prefix="$FFBUILD_PREFIX"
--disable-shared
--enable-static
--with-pic
--disable-doxygen-doc
--disable-doxygen-dot
--disable-doxygen-html
--disable-doxygen-ps
--disable-doxygen-pdf
--disable-examples
--disable-bdjava-jar
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
export CPPFLAGS="${CPPFLAGS} -Ddec_init=libbr_dec_init"
./configure "${myconf[@]}"
make -j$(nproc)
make install
}
ffbuild_configure() {
echo --enable-libbluray
}
ffbuild_unconfigure() {
echo --disable-libbluray
}