FFmpeg-Builds/scripts.d/50-lilv/96-zix.sh
2023-07-08 19:26:54 +02:00

38 lines
729 B
Bash
Executable file

#!/bin/bash
SCRIPT_REPO="https://github.com/drobilla/zix.git"
SCRIPT_COMMIT="a5c18d52a5351430d370084f25aaf7d166f7afd5"
ffbuild_enabled() {
return 0
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR/$SELF"
mkdir build && cd build
local myconf=(
--prefix="$FFBUILD_PREFIX"
--buildtype=release
--default-library=static
-Ddocs=disabled
-Dbenchmarks=disabled
-Dtests=disabled
-Dtests_cpp=disabled
)
if [[ $TARGET == win* || $TARGET == linux* ]]; then
myconf+=(
--cross-file=/cross.meson
)
else
echo "Unknown target"
return -1
fi
meson "${myconf[@]}" ..
ninja -j"$(nproc)"
ninja install
}