forked from alisw/alidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alf.sh
46 lines (42 loc) · 1.56 KB
/
alf.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
package: ALF
version: "%(tag_basename)s"
tag: v0.14.0
requires:
- boost
- Common-O2
- "dim:(?!osx)"
- "GCC-Toolchain:(?!osx)"
- LLA
- ReadoutCard
- "DimRpcParallel:(?!osx)"
build_requires:
- alibuild-recipe-tools
- CMake
source: https://github.com/AliceO2Group/ALF
incremental_recipe: |
make ${JOBS:+-j$JOBS} install
mkdir -p $INSTALLROOT/etc/modulefiles && rsync -a --delete etc/modulefiles/ $INSTALLROOT/etc/modulefiles
---
#!/bin/bash -ex
# Enforce no warning code in the PR checker
if [[ $ALIBUILD_O2_TESTS ]]; then
CXXFLAGS="${CXXFLAGS} -Werror -Wno-error=deprecated-declarations"
fi
cmake $SOURCEDIR \
-DCMAKE_INSTALL_PREFIX=$INSTALLROOT \
${BOOST_REVISION:+-DBOOST_ROOT=$BOOST_ROOT} \
${COMMON_O2_REVISION:+-DCommon_ROOT=$COMMON_O2_ROOT} \
${DIM_REVISION:+-DDIM_ROOT=$DIM_ROOT} \
${READOUTCARD_REVISION:+-DReadoutCard_ROOT=$READOUTCARD_ROOT} \
${LLA_REVISION:+-DLLA_ROOT=$LLA_ROOT} \
${DIM_RPC_PARALLEL_REVISION:+-DDIM_RPC_PARALLEL_ROOT=$DIM_RPC_PARALLEL_ROOT} \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON
cp ${BUILDDIR}/compile_commands.json ${INSTALLROOT}
make ${JOBS+-j $JOBS} install
#ModuleFile
mkdir -p etc/modulefiles
alibuild-generate-module --bin --lib > etc/modulefiles/$PKGNAME
cat >> etc/modulefiles/$PKGNAME <<EoF
prepend-path PYTHONPATH \$PKG_ROOT/lib
EoF
mkdir -p $INSTALLROOT/etc/modulefiles && rsync -a --delete etc/modulefiles/ $INSTALLROOT/etc/modulefiles