forked from alisw/alidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
abseil.sh
35 lines (30 loc) · 891 Bytes
/
abseil.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
package: abseil
version: "%(tag_basename)s"
tag: "20200225.2"
requires:
- "GCC-Toolchain:(?!osx)"
build_requires:
- CMake
- alibuild-recipe-tools
source: https://github.com/abseil/abseil-cpp
incremental_recipe: |
make ${JOBS:+-j$JOBS} install
mkdir -p $INSTALLROOT/etc/modulefiles && rsync -a --delete etc/modulefiles/ $INSTALLROOT/etc/modulefiles
---
#!/bin/bash -e
mkdir -p $INSTALLROOT
cmake $SOURCEDIR \
-DBUILD_TESTING=OFF \
-DCMAKE_INSTALL_PREFIX=$INSTALLROOT
make ${JOBS:+-j$JOBS} install
# Modulefile
MODULEDIR="$INSTALLROOT/etc/modulefiles"
MODULEFILE="$MODULEDIR/$PKGNAME"
mkdir -p "$MODULEDIR"
alibuild-generate-module > "$MODULEFILE"
cat >> "$MODULEFILE" <<EoF
# Our environment
set ABSEIL_ROOT \$::env(BASEDIR)/$PKGNAME/\$version
prepend-path PATH \$ABSEIL_ROOT/bin
prepend-path LD_LIBRARY_PATH \$ABSEIL_ROOT/lib
EoF