forked from alisw/alidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
control-core.sh
49 lines (45 loc) · 1.32 KB
/
control-core.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
package: Control-Core
version: "%(tag_basename)s"
tag: "v1.20.0"
build_requires:
- "GCC-Toolchain:(?!osx)"
- golang
- protobuf
- grpc
- alibuild-recipe-tools
source: https://github.com/AliceO2Group/Control
---
#!/bin/bash -e
export GOPATH=$PWD/go
export PATH=$GOPATH/bin:$PATH
export GO111MODULE=on
export GOCACHE=$BUILDDIR/cache
BUILD=$GOPATH/src/github.com/AliceO2Group/Control
mkdir -p $BUILD
rsync -a --delete $SOURCEDIR/ $BUILD/
pushd $BUILD
make vendor
make WHAT="o2-aliecs-core o2-aliecs-executor o2-apricot"
mkdir -p $INSTALLROOT/bin
rsync -a --delete bin/ $INSTALLROOT/bin
# safely clean up vendor directory regardless of permissions
go clean -modcache
popd
#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
# Our environment
set CONTROL_CORE_ROOT \$::env(BASEDIR)/$PKGNAME/\$version
prepend-path PATH \$CONTROL_CORE_ROOT/bin
prepend-path LD_LIBRARY_PATH \$CONTROL_CORE_ROOT/lib
EoF
mkdir -p $INSTALLROOT/etc/modulefiles && rsync -a --delete etc/modulefiles/ $INSTALLROOT/etc/modulefiles