Merge branch 'master' of gitorious.psi.ch:scicomp/psi-modules-buildenvironment

This commit is contained in:
2014-04-29 17:41:29 +02:00
2 changed files with 27 additions and 4 deletions

View File

@@ -388,12 +388,10 @@ function _cleanup_build() {
function em.cleanup_src() {
(
[[ -d /${EM_SRCDIR} ]] || return 0
cd "/${EM_SRCDIR}";
cd "/${EM_SRCDIR}/..";
if [[ $(pwd) != / ]]; then
echo "Cleaning up $(pwd)"
rm -rf *
cd ..
rmdir "/${EM_SRCDIR}"
rm -rf ${EM_SRCDIR##*/}
fi
);
}

25
scripts/Lmod.build Executable file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
source "$(dirname $0)/../lib/libem.bash"
function em.configure() {
cd "${EM_SRCDIR}"
"${EM_SRCDIR}"/configure \
--prefix="${EM_PREFIX}/core" \
--with-module-root-path="${MODULEPATH_ROOT}" \
|| exit 1
}
function em.build() {
cd "${EM_SRCDIR}"
make -j ${JOBS}
}
# use system gcc to compile
declare -rx CC=gcc
em.add_to_family "core"
em.set_build_dependencies "lua"
em.make_all
em.cleanup_src