forked from alisw/alidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlla.sh
44 lines (40 loc) · 1.43 KB
/
lla.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
package: LLA
version: "%(tag_basename)s"
tag: v0.2.2
requires:
- boost
- Common-O2
- "GCC-Toolchain:(?!osx)"
- ReadoutCard
- "Python:slc.*"
build_requires:
- alibuild-recipe-tools
- CMake
prepend_path:
PYTHONPATH: $LLA_ROOT/lib
source: https://github.com/AliceO2Group/LLA
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} \
${READOUTCARD_REVISION:+-DReadoutCard_ROOT=$READOUTCARD_ROOT} \
${PYTHON_REVISION:+-DPython3_ROOT_DIR="$PYTHON_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 --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