1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #!/bin/bash
- SCRIPT_REPO="https://code.videolan.org/videolan/libbluray.git"
- SCRIPT_COMMIT="bb5bc108ec695889855f06df338958004ff289ef"
- 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
- }
|