1234567891011121314151617181920212223242526272829303132333435 |
- #!/bin/bash
- SCRIPT_REPO="https://github.com/drobilla/sord.git"
- SCRIPT_COMMIT="e71b831791c2a8820fe0580adfc555d5dc4b3a1a"
- ffbuild_enabled() {
- return 0
- }
- ffbuild_dockerbuild() {
- mkdir build && cd build
- local myconf=(
- --prefix="$FFBUILD_PREFIX"
- --buildtype=release
- --default-library=static
- -Ddocs=disabled
- -Dtools=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
- }
|