-
Notifications
You must be signed in to change notification settings - Fork 168
/
dds.sh
58 lines (51 loc) · 1.76 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
package: DDS
version: "%(tag_basename)s"
tag: "3.11"
source: https://github.com/FairRootGroup/DDS
requires:
- boost
- protobuf
build_requires:
- CMake
- alibuild-recipe-tools
incremental_recipe: |
case $ARCHITECTURE in
osx*) ;;
*) make -j$JOBS wn_bin ;;
esac
make -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 \
${CMAKE_BUILD_TYPE:+-DCMAKE_BUILD_TYPE=$CMAKE_BUILD_TYPE} \
${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*) ;;
*) make -j$JOBS wn_bin ;;
esac
make -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