-
Notifications
You must be signed in to change notification settings - Fork 171
/
Copy pathdds.sh
63 lines (56 loc) · 2.04 KB
/
dds.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package: DDS
version: "3.12"
tag: support-new-protobuf
source: https://github.com/ktf/DDS
requires:
- boost
- protobuf
- abseil
build_requires:
- CMake
- ninja
- alibuild-recipe-tools
incremental_recipe: |
case $ARCHITECTURE in
osx*) ;;
*) cmake --build . -- ${JOBS:+-j$JOBS} wn_bin ;;
esac
cmake --build . -- ${JOBS:+-j$JOBS} install
mkdir -p $INSTALLROOT/etc/modulefiles && rsync -a --delete etc/modulefiles/ $INSTALLROOT/etc/modulefiles
---
case $ARCHITECTURE in
osx*)
[[ ! $BOOST_ROOT ]] && BOOST_ROOT=`brew --prefix boost`
[[ ! $PROTOBUF_ROOT ]] && PROTOBUF_ROOT=`brew --prefix protobuf`
;;
esac
[[ $GCC_TOOLCHAIN_ROOT ]] && export DDS_LD_LIBRARY_PATH="$GCC_TOOLCHAIN_ROOT/lib64"
cmake $SOURCEDIR \
-DCMAKE_INSTALL_PREFIX=$INSTALLROOT \
-G Ninja \
${CMAKE_BUILD_TYPE:+-DCMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE} \
-Dabsl_DIR=$ABSEIL_ROOT \
-Dprotobuf_MODULE_COMPATIBLE=ON \
${BOOST_ROOT:+-DBOOST_ROOT=$BOOST_ROOT -DBoost_NO_SYSTEM_PATHS=ON} \
-DProtobuf_ROOT=${PROTOBUF_ROOT} \
-DCMAKE_INSTALL_LIBDIR=lib
# Limit the number of build processes to avoid exahusting memory when building
# on smaller machines.
JOBS=$((${JOBS:-1}*2/5))
[[ $JOBS -gt 0 ]] || JOBS=1
# This is needed because https://github.com/Homebrew/homebrew-core/pull/35735
# seems to break the creation of the tarball.
case $ARCHITECTURE in
osx*) ;;
*) cmake --build . -- ${JOBS:+-j$JOBS} wn_bin ;;
esac
cmake --build . -- ${JOBS:+-j$JOBS} install
find $INSTALLROOT -path "*/lib/libboost_*" -delete
rm -f "$INSTALLROOT/LICENSE"
# ModuleFile
mkdir -p etc/modulefiles
alibuild-generate-module --bin --lib > etc/modulefiles/$PKGNAME
cat >> etc/modulefiles/$PKGNAME <<EoF
setenv DDS_ROOT \$PKG_ROOT
EoF
mkdir -p $INSTALLROOT/etc/modulefiles && rsync -a --delete etc/modulefiles/ $INSTALLROOT/etc/modulefiles