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

53 lines
995 B
Bash
Raw Normal View History

2021-11-18 22:54:46 +00:00
#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://code.videolan.org/rist/librist.git"
2023-03-19 11:26:11 +00:00
SCRIPT_COMMIT="9f09a3defd6e59839aae3e3b7b5411213fa04b8a"
2021-11-18 22:54:46 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
2022-07-12 15:54:12 +00:00
git-mini-clone "$SCRIPT_REPO" "$SCRIPT_COMMIT" librist
2021-11-18 22:54:46 +00:00
cd librist
mkdir build && cd build
local myconf=(
--prefix="$FFBUILD_PREFIX"
--buildtype=release
--default-library=static
-Duse_mbedtls=true
-Dbuiltin_mbedtls=false
-Dbuilt_tools=false
-Dtest=false
)
if [[ $TARGET == win* ]]; then
myconf+=(
-Dhave_mingw_pthreads=true
)
fi
if [[ $TARGET == win* || $TARGET == linux* ]]; then
myconf+=(
--cross-file=/cross.meson
)
else
echo "Unknown target"
return -1
fi
meson "${myconf[@]}" ..
ninja -j"$(nproc)"
ninja install
}
ffbuild_configure() {
echo --enable-librist
}
ffbuild_unconfigure() {
echo --disable-librist
}