#!/bin/bash SCRIPT_REPO="https://github.com/lv2/sratom.git" SCRIPT_COMMIT="b97b447d77fbf172260b4b40f184959f59c3623e" 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 -Dtests=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 }