forked from alisw/alidist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
alidpg.sh
27 lines (26 loc) · 848 Bytes
/
alidpg.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
package: AliDPG
version: "%(tag_basename)s"
tag: master
source: https://github.com/alisw/AliDPG
---
#!/bin/bash -e
rsync -a --exclude='**/.git' --delete --delete-excluded \
$SOURCEDIR/ $INSTALLROOT/
# 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
setenv ALIDPG_RELEASE \$version
setenv ALIDPG_VERSION $PKGVERSION
setenv ALIDPG_ROOT \$::env(BASEDIR)/$PKGNAME/\$::env(ALIDPG_RELEASE)
EoF
mkdir -p $INSTALLROOT/etc/modulefiles && rsync -a --delete etc/modulefiles/ $INSTALLROOT/etc/modulefiles