FFmpeg-Builds/scripts.d/50-libbluray.sh

59 lines
1.1 KiB
Bash
Raw Normal View History

2020-09-06 14:04:48 +00:00
#!/bin/bash
LIBBLURAY_REPO="https://code.videolan.org/videolan/libbluray.git"
2021-02-19 16:08:32 +00:00
LIBBLURAY_COMMIT="79429a524a1f339f4c2e6c90bb14939ab767ab00"
2020-09-06 14:04:48 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerstage() {
to_df "ADD $SELF /stage.sh"
to_df "RUN run_stage"
}
ffbuild_dockerbuild() {
git-mini-clone "$LIBBLURAY_REPO" "$LIBBLURAY_COMMIT" libbluray
cd libbluray
./bootstrap || return -1
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* ]]; then
myconf+=(
--host="$FFBUILD_TOOLCHAIN"
)
else
echo "Unknown target"
return -1
fi
./configure "${myconf[@]}"
make -j$(nproc)
make install
cd ..
rm -rf libbluray
}
ffbuild_configure() {
echo --enable-libbluray
}
ffbuild_unconfigure() {
echo --disable-libbluray
}