41 lines
735 B
Bash
Executable file
41 lines
735 B
Bash
Executable file
#!/bin/bash
|
|
|
|
SCRIPT_REPO="https://code.videolan.org/videolan/dav1d.git"
|
|
SCRIPT_COMMIT="a7e12b628472516718d37108fde7d438b14a0372"
|
|
|
|
ffbuild_enabled() {
|
|
return 0
|
|
}
|
|
|
|
ffbuild_dockerbuild() {
|
|
cd "$FFBUILD_DLDIR/$SELF"
|
|
|
|
mkdir build && cd build
|
|
|
|
local myconf=(
|
|
--prefix="$FFBUILD_PREFIX"
|
|
--buildtype=release
|
|
--default-library=static
|
|
)
|
|
|
|
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
|
|
}
|
|
|
|
ffbuild_configure() {
|
|
echo --enable-libdav1d
|
|
}
|
|
|
|
ffbuild_unconfigure() {
|
|
echo --disable-libdav1d
|
|
}
|