diff --git a/j/JuliaLang/JuliaLang-1.0.3.eb b/j/JuliaLang/JuliaLang-1.0.3.eb index 677fdae2..eb224f07 100644 --- a/j/JuliaLang/JuliaLang-1.0.3.eb +++ b/j/JuliaLang/JuliaLang-1.0.3.eb @@ -4,6 +4,7 @@ easyblock = 'MakeCp' name = 'JuliaLang' version = '1.0.3' +versionsuffix = '-test' homepage = 'http://julialang.org' description = """Julia is a high-level, high-performance dynamic programming language for technical computing, @@ -28,18 +29,23 @@ dependencies = [ ('git', '2.19.1') ] -buildopts = 'O=%(installdir)s' +#uildopts = 'O=%(installdir)s' -skipsteps = ['install'] -files_to_copy = ["tests/"] +#kipsteps = ['install'] +files_to_copy = ['*'] -modextravars = { - 'PATH': '%(installdir)s', -} +postinstallcmds = [ + 'mkdir -p %(installdir)s/bin', + 'ln -s %(installdir)s/usr/bin/julia %(installdir)s/bin/julia', +] + +#modextravars = { +# 'PATH': '%(installdir)s', +#} sanity_check_paths = { - 'files': ['julia'], - 'dirs': ['usr', 'test'] + 'files': ['bin/julia'], + 'dirs': ['bin', 'usr', 'test'] } moduleclass = 'lang'