61debb00e5
Otherwise the entire build cache effectively invalidates the moment one script changes..
37 lines
720 B
Bash
Executable file
37 lines
720 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://github.com/lv2/lv2.git"
|
|
SCRIPT_COMMIT="52a96cec13bf2d541c42f8f398e7ea1387c6f56d"
|
|
|
|
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
|
|
}
|