Add libuavs3d
This commit is contained in:
parent
f9cbf0f195
commit
1f31a313c5
1 changed files with 37 additions and 0 deletions
37
scripts.d/50-uavs3d.sh
Executable file
37
scripts.d/50-uavs3d.sh
Executable file
|
@ -0,0 +1,37 @@
|
|||
#!/bin/bash
|
||||
|
||||
UAVS3D_REPO="https://github.com/uavs3/uavs3d.git"
|
||||
UAVS3D_COMMIT="fd4c1b4443043f4fe76e10223158e5a1260baf6d"
|
||||
|
||||
ffbuild_enabled() {
|
||||
return 0
|
||||
}
|
||||
|
||||
ffbuild_dockerstage() {
|
||||
to_df "ADD $SELF /stage.sh"
|
||||
to_df "RUN run_stage"
|
||||
}
|
||||
|
||||
ffbuild_dockerbuild() {
|
||||
git clone "$UAVS3D_REPO" uavs3d
|
||||
cd uavs3d
|
||||
git checkout "$UAVS3D_COMMIT"
|
||||
|
||||
mkdir build/linux
|
||||
cd build/linux
|
||||
|
||||
cmake -DCMAKE_TOOLCHAIN_FILE="$FFBUILD_CMAKE_TOOLCHAIN" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX="$FFBUILD_PREFIX" -DBUILD_SHARED_LIBS=NO ../..
|
||||
make -j$(nproc)
|
||||
make install
|
||||
|
||||
cd ../..
|
||||
rm -rf uavs3d
|
||||
}
|
||||
|
||||
ffbuild_configure() {
|
||||
echo --enable-libuavs3d
|
||||
}
|
||||
|
||||
ffbuild_unconfigure() {
|
||||
echo --disable-libuavs3d
|
||||
}
|
Loading…
Reference in a new issue