This commit is contained in:
BtbN 2020-09-05 21:50:25 +02:00
parent 80e0eea20c
commit dada1a097a
1 changed files with 36 additions and 0 deletions

36
scripts.d/50-srt.sh Executable file
View File

@ -0,0 +1,36 @@
#!/bin/bash
SRT_REPO="https://github.com/Haivision/srt.git"
SRT_COMMIT="a3f28336a8f0c3c1fce7b2f46d017bcb59af1888"
ffbuild_enabled() {
return 0
}
ffbuild_dockerstage() {
to_df "ADD $SELF /stage.sh"
to_df "RUN run_stage"
}
ffbuild_dockerbuild() {
git clone "$SRT_REPO" srt || return -1
cd srt
git checkout "$SRT_COMMIT" || return -1
mkdir build && cd build
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 .. || return -1
make -j$(nproc) || return -1
make install || return -1
cd ../..
rm -rf srt
}
ffbuild_configure() {
echo --enable-libsrt
}
ffbuild_unconfigure() {
echo --disable-libsrt
}