Update Mathematica recipe (#13679)

* Add licensing; replace url with url_for_version; create .spack dir during installation; symlink wolframscript; generate spec.yaml if missing

* Reverted url change, .spack directory creation, and spec.yaml generation

* Fix formatting issues
This commit is contained in:
Roman Briskine 2019-11-26 18:22:31 +00:00 committed by Adam J. Stewart
parent 18cf751d13
commit eb0561735d

View File

@ -20,12 +20,26 @@ class Mathematica(Package):
homepage = "https://www.wolfram.com/mathematica/" homepage = "https://www.wolfram.com/mathematica/"
url = 'file://{0}/Mathematica_12.0.0_LINUX.sh'.format(os.getcwd()) 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) 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): def install(self, spec, prefix):
sh = which('sh') sh = which('sh')
sh(self.stage.archive_file, '--', '-auto', '-verbose', sh(self.stage.archive_file, '--', '-auto', '-verbose',
'-targetdir={0}'.format(prefix), '-targetdir={0}'.format(prefix),
'-execdir={0}'.format(prefix.bin), '-execdir={0}'.format(prefix.bin),
'-selinux=y') '-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)