FFmpeg-Builds/scripts.d/50-uavs3d.sh

36 lines
736 B
Bash
Raw Normal View History

2020-10-11 12:43:35 +00:00
#!/bin/bash
2022-07-12 15:54:12 +00:00
SCRIPT_REPO="https://github.com/uavs3/uavs3d.git"
2023-02-23 11:11:08 +00:00
SCRIPT_COMMIT="1fd04917cff50fac72ae23e45f82ca6fd9130bd8"
2020-10-11 12:43:35 +00:00
ffbuild_enabled() {
2020-10-19 22:56:50 +00:00
[[ $TARGET == win32 ]] && return -1
2020-10-11 12:43:35 +00:00
return 0
}
ffbuild_dockerdl() {
2022-07-12 15:54:12 +00:00
git clone "$SCRIPT_REPO" uavs3d
2020-10-11 12:43:35 +00:00
cd uavs3d
2022-07-12 15:54:12 +00:00
git checkout "$SCRIPT_COMMIT"
}
ffbuild_dockerbuild() {
cd "$FFBUILD_DLDIR"/uavs3d
2020-10-11 12:43:35 +00:00
mkdir build/linux
cd build/linux
cmake -DCMAKE_TOOLCHAIN_FILE="$FFBUILD_CMAKE_TOOLCHAIN" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$FFBUILD_PREFIX" \
-DCOMPILE_10BIT=1 -DBUILD_SHARED_LIBS=NO ../..
2020-10-11 12:43:35 +00:00
make -j$(nproc)
make install
}
ffbuild_configure() {
echo --enable-libuavs3d
}
ffbuild_unconfigure() {
echo --disable-libuavs3d
}