2020-09-06 14:04:48 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
LIBBLURAY_REPO="https://code.videolan.org/videolan/libbluray.git"
|
2022-04-23 19:49:20 +00:00
|
|
|
LIBBLURAY_COMMIT="0540b1c1c53f9813f99233208c5ccccd87004f98"
|
2020-09-06 14:04:48 +00:00
|
|
|
|
|
|
|
ffbuild_enabled() {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_dockerbuild() {
|
|
|
|
git-mini-clone "$LIBBLURAY_REPO" "$LIBBLURAY_COMMIT" libbluray
|
|
|
|
cd libbluray
|
|
|
|
|
2021-04-04 21:20:31 +00:00
|
|
|
./bootstrap
|
2020-09-06 14:04:48 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
)
|
|
|
|
|
2021-05-14 02:52:29 +00:00
|
|
|
if [[ $TARGET == win* || $TARGET == linux* ]]; then
|
2020-09-06 14:04:48 +00:00
|
|
|
myconf+=(
|
|
|
|
--host="$FFBUILD_TOOLCHAIN"
|
|
|
|
)
|
2021-05-14 02:52:29 +00:00
|
|
|
else
|
2020-09-06 14:04:48 +00:00
|
|
|
echo "Unknown target"
|
|
|
|
return -1
|
|
|
|
fi
|
|
|
|
|
|
|
|
./configure "${myconf[@]}"
|
|
|
|
make -j$(nproc)
|
|
|
|
make install
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_configure() {
|
|
|
|
echo --enable-libbluray
|
|
|
|
}
|
|
|
|
|
|
|
|
ffbuild_unconfigure() {
|
|
|
|
echo --disable-libbluray
|
|
|
|
}
|