Files
pilivestreamingtools/build-libsrt.sh
sebseb7 0013938954 srt
2022-02-22 21:28:10 +00:00

13 lines
260 B
Bash
Executable File

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 ..