forked from alisw/alidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configuration.sh
38 lines (34 loc) · 1.03 KB
/
configuration.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
package: Configuration
version: "%(tag_basename)s"
tag: v2.8.0
requires:
- boost
- "GCC-Toolchain:(?!osx)"
- Ppconsul
- curl
build_requires:
- CMake
- alibuild-recipe-tools
source: https://github.com/AliceO2Group/Configuration
incremental_recipe: |
make ${JOBS:+-j$JOBS} install
mkdir -p $INSTALLROOT/etc/modulefiles && rsync -a --delete etc/modulefiles/ $INSTALLROOT/etc/modulefiles
---
#!/bin/bash -e
case $ARCHITECTURE in
osx*)
[[ ! $BOOST_ROOT ]] && BOOST_ROOT=$(brew --prefix boost)
;;
esac
cmake $SOURCEDIR \
-DCMAKE_INSTALL_PREFIX=$INSTALLROOT \
${BOOST_ROOT:+-DBOOST_ROOT=$BOOST_ROOT} \
-Dppconsul_DIR=${PPCONSUL_ROOT}/cmake
make ${JOBS+-j $JOBS} install
#ModuleFile
mkdir -p etc/modulefiles
alibuild-generate-module --bin --lib > etc/modulefiles/$PKGNAME
cat >> etc/modulefiles/$PKGNAME <<EoF
# Our environment
EoF
mkdir -p $INSTALLROOT/etc/modulefiles && rsync -a --delete etc/modulefiles/ $INSTALLROOT/etc/modulefiles