61debb00e5
Otherwise the entire build cache effectively invalidates the moment one script changes..
36 lines
749 B
Bash
Executable file
36 lines
749 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://git.code.sf.net/p/soxr/code"
|
|
SCRIPT_COMMIT="945b592b70470e29f917f4de89b4281fbbd540c0"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
cd "$FFBUILD_DLDIR/$SELF"
|
|
|
|
mkdir build && cd build
|
|
|
|
cmake -DCMAKE_TOOLCHAIN_FILE="$FFBUILD_CMAKE_TOOLCHAIN" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$FFBUILD_PREFIX" -DWITH_OPENMP=ON -DBUILD_TESTS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_SHARED_LIBS=OFF ..
|
|
make -j$(nproc)
|
|
make install
|
|
|
|
echo "Libs.private: -lgomp" >> "$FFBUILD_PREFIX"/lib/pkgconfig/soxr.pc
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-libsoxr
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-libsoxr
|
|
}
|
|
|
|
ffbuild_ldflags() {
|
|
echo -pthread
|
|
}
|
|
|
|
ffbuild_libs() {
|
|
echo -lgomp
|
|
}
|