This commit is contained in:
sebseb7
2022-02-22 21:28:10 +00:00
parent 192066f4f1
commit 0013938954
2 changed files with 14 additions and 0 deletions

12
build-libsrt.sh Executable file
View File

@@ -0,0 +1,12 @@
sudo apt-get install tclsh pkg-config cmake libssl-dev build-essential
if [ -d "srt" ]; then
cd srt
git pull
else
git clone -b master --single-branch --depth 1 https://github.com/Haivision/srt.git
cd srt
fi
./configure
make -j4
sudo make install
cd ..