mirror of
https://github.com/mpv-player/mpv.git
synced 2026-05-07 20:02:49 +00:00
14 lines
272 B
Bash
14 lines
272 B
Bash
common_args="--werror \
|
|
-Dlibmpv=true \
|
|
-Dtests=true \
|
|
"
|
|
|
|
export CFLAGS="$CFLAGS -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3"
|
|
|
|
build_subrandr() {
|
|
git clone --depth=1 https://github.com/afishhh/subrandr.git
|
|
pushd subrandr
|
|
cargo xtask install --prefix "$@"
|
|
popd
|
|
}
|