12345678910111213141516171819202122232425262728293031323334 |
- #!/bin/bash
- SCRIPT_REPO="https://github.com/lv2/sratom.git"
- SCRIPT_COMMIT="ce5688253e1ef06cd9551f563f70aab2cd487197"
- ffbuild_enabled() {
- return 0
- }
- ffbuild_dockerbuild() {
- 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
- }
|