summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/mathematica/package.py16
1 files changed, 15 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/mathematica/package.py b/var/spack/repos/builtin/packages/mathematica/package.py
index c86d98fa75..4fc25436ae 100644
--- a/var/spack/repos/builtin/packages/mathematica/package.py
+++ b/var/spack/repos/builtin/packages/mathematica/package.py
@@ -20,12 +20,26 @@ class Mathematica(Package):
homepage = "https://www.wolfram.com/mathematica/"
url = 'file://{0}/Mathematica_12.0.0_LINUX.sh'.format(os.getcwd())
- version('12.0.0', sha256='b9fb71e1afcc1d72c200196ffa434512d208fa2920e207878433f504e58ae9d7',
+ version('12.0.0',
+ sha256='b9fb71e1afcc1d72c200196ffa434512d208fa2920e207878433f504e58ae9d7',
expand=False)
+ # Licensing
+ license_required = True
+ license_comment = '#'
+ license_files = ['Configuration/Licensing/mathpass']
+ license_url = 'https://reference.wolfram.com/language/tutorial/RegistrationAndPasswords.html#857035062'
+
def install(self, spec, prefix):
sh = which('sh')
sh(self.stage.archive_file, '--', '-auto', '-verbose',
'-targetdir={0}'.format(prefix),
'-execdir={0}'.format(prefix.bin),
'-selinux=y')
+ # This is what most people would use on a cluster but the installer
+ # does not symlink it
+ ws_link_path = os.path.join(prefix.bin, 'wolframscript')
+ if not os.path.exists(ws_link_path):
+ ln = which('ln')
+ ws_path = os.path.join(prefix, 'Executables', 'wolframscript')
+ ln('-s', ws_path, ws_link_path)