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

33 lines
704 B
Bash
Raw Normal View History

2020-09-05 19:50:25 +00:00
#!/bin/bash
SRT_REPO="https://github.com/Haivision/srt.git"
2021-04-03 23:09:54 +00:00
SRT_COMMIT="60ae6e56014b5ee48c8e25eda4d7fcc2e28f79cc"
2020-09-05 19:50:25 +00:00
ffbuild_enabled() {
return 0
}
ffbuild_dockerstage() {
to_df "ADD $SELF /stage.sh"
to_df "RUN run_stage"
}
ffbuild_dockerbuild() {
2020-09-05 20:34:23 +00:00
git-mini-clone "$SRT_REPO" "$SRT_COMMIT" srt
2020-09-05 19:50:25 +00:00
cd srt
mkdir build && cd build
2021-04-04 21:20:31 +00:00
cmake -DCMAKE_TOOLCHAIN_FILE="$FFBUILD_CMAKE_TOOLCHAIN" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$FFBUILD_PREFIX" -DENABLE_SHARED=OFF -DENABLE_STATIC=ON -DENABLE_ENCRYPTION=ON -DENABLE_APPS=OFF ..
make -j$(nproc)
make install
2020-09-05 19:50:25 +00:00
}
ffbuild_configure() {
echo --enable-libsrt
}
ffbuild_unconfigure() {
echo --disable-libsrt
}