FFmpeg-Builds/scripts.d/50-lilv/96-lv2.sh

38 lines
720 B
Bash
Executable File

#!/bin/bash
SCRIPT_REPO="https://github.com/lv2/lv2.git"
SCRIPT_COMMIT="bb6a2103c7adf3c1339728915d7f1497ee98dcbf"
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
-Dplugins=disabled
-Dtests=disabled
-Donline_docs=false
)
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
}