forked from alisw/alidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdds.sh
64 lines (57 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
64
package: DDS
version: "3.5.1"
tag: "3.5.1"
source: https://github.com/FairRootGroup/DDS
requires:
- boost
build_requires:
- CMake
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` ;;
esac
[[ $GCC_TOOLCHAIN_ROOT ]] && export DDS_LD_LIBRARY_PATH="$GCC_TOOLCHAIN_ROOT/lib64"
cmake $SOURCEDIR \
-DCMAKE_INSTALL_PREFIX=$INSTALLROOT \
${BOOST_ROOT:+-DBOOST_ROOT=$BOOST_ROOT -DBoost_NO_SYSTEM_PATHS=ON} \
# 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/lib" -name "libboost_*" -delete
rm -f "$INSTALLROOT/LICENSE"
# ModuleFile
mkdir -p etc/modulefiles
cat > etc/modulefiles/$PKGNAME <<EoF
#%Module1.0
proc ModulesHelp { } {
global version
puts stderr "ALICE Modulefile for $PKGNAME $PKGVERSION-@@PKGREVISION@$PKGHASH@@"
}
set version $PKGVERSION-@@PKGREVISION@$PKGHASH@@
module-whatis "ALICE Modulefile for $PKGNAME $PKGVERSION-@@PKGREVISION@$PKGHASH@@"
# Dependencies
module load BASE/1.0 ${BOOST_REVISION:+boost/$BOOST_VERSION-$BOOST_REVISION} \\
${GCC_TOOLCHAIN_REVISION:+GCC-Toolchain/$GCC_TOOLCHAIN_VERSION-$GCC_TOOLCHAIN_REVISION}
# Our environment
set DDS_ROOT \$::env(BASEDIR)/$PKGNAME/\$version
setenv DDS_ROOT \$DDS_ROOT
prepend-path PATH \$DDS_ROOT/bin
prepend-path LD_LIBRARY_PATH \$DDS_ROOT/lib
EoF
mkdir -p $INSTALLROOT/etc/modulefiles && rsync -a --delete etc/modulefiles/ $INSTALLROOT/etc/modulefiles