mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 22:40:30 +00:00
So use it (the `cmake --install` is perhaps better than make install since it doesn't trigger rebuilds so often). Also to be consistent with the other SVT compressions.
14 lines
346 B
Bash
Executable File
14 lines
346 B
Bash
Executable File
#!/bin/bash -eux
|
|
|
|
cd /var/tmp/ffmpeg
|
|
( cd libvpx && sudo make install )
|
|
( cd x264 && sudo make install )
|
|
( cd nv-codec-headers && sudo make install )
|
|
( cd aom/build && sudo cmake --install . )
|
|
sudo cmake --install SVT-AV1/Build
|
|
sudo cmake --install SVT-HEVC/Build/linux/Release
|
|
sudo cmake --install SVT-VP9/Build
|
|
|
|
sudo make install
|
|
sudo ldconfig
|