forked from alisw/alidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
infologger.sh
53 lines (48 loc) · 1.9 KB
/
infologger.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
package: InfoLogger
version: "%(tag_basename)s"
tag: v1.0.2
requires:
- boost
- "GCC-Toolchain:(?!osx)"
- Common-O2
- MySQL
build_requires:
- CMake
source: https://github.com/AliceO2Group/InfoLogger
incremental_recipe: |
make ${JOBS:+-j$JOBS} install
mkdir -p $INSTALLROOT/etc/modulefiles && rsync -a --delete etc/modulefiles/ $INSTALLROOT/etc/modulefiles
---
#!/bin/bash -ex
case $ARCHITECTURE in
osx*) BOOST_ROOT=$(brew --prefix boost) ;;
esac
cmake $SOURCEDIR \
-DCMAKE_INSTALL_PREFIX=$INSTALLROOT \
${BOOST_VERSION:+-DBOOST_ROOT=$BOOST_ROOT} \
${COMMON_O2_VERSION:+-DCommon_ROOT=$COMMON_O2_ROOT} \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON
cp ${BUILDDIR}/compile_commands.json ${INSTALLROOT}
make ${JOBS+-j $JOBS} install
#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_VERSION:+boost/$BOOST_VERSION-$BOOST_REVISION} \\
${GCC_TOOLCHAIN_VERSION:+GCC-Toolchain/$GCC_TOOLCHAIN_VERSION-$GCC_TOOLCHAIN_REVISION} \\
Common-O2/$COMMON_O2_VERSION-$COMMON_O2_REVISION
# Our environment
setenv INFOLOGGER_ROOT \$::env(BASEDIR)/$PKGNAME/\$version
prepend-path PATH \$::env(INFOLOGGER_ROOT)/bin
prepend-path LD_LIBRARY_PATH \$::env(INFOLOGGER_ROOT)/lib
$([[ ${ARCHITECTURE:0:3} == osx ]] && echo "prepend-path DYLD_LIBRARY_PATH \$::env(INFOLOGGER_ROOT)/lib")
EoF
mkdir -p $INSTALLROOT/etc/modulefiles && rsync -a --delete etc/modulefiles/ $INSTALLROOT/etc/modulefiles