mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 14:40:22 +00:00
+ do not use yasm for SVT - nasm-mozilla (nasm 2.14) installed in this commit is sufficient
11 lines
207 B
Bash
Executable File
11 lines
207 B
Bash
Executable File
#!/bin/sh -eux
|
|
#
|
|
# Builds rav1e but doesn't install it
|
|
|
|
cargo install cargo-c
|
|
git clone --depth 1 https://github.com/xiph/rav1e.git
|
|
cd rav1e
|
|
cargo build --release
|
|
cargo cinstall --release --destdir=install
|
|
|