
- Add a test that verifies checksums on all packages - Also add an attribute to packages that indicates whether they need a manual download or not, and add an exception in the tests for these packages until we can verify them.
78 lines
2.9 KiB
Python
78 lines
2.9 KiB
Python
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
import os
|
|
import subprocess
|
|
|
|
|
|
class Matlab(Package):
|
|
"""MATLAB (MATrix LABoratory) is a multi-paradigm numerical computing
|
|
environment and fourth-generation programming language. A proprietary
|
|
programming language developed by MathWorks, MATLAB allows matrix
|
|
manipulations, plotting of functions and data, implementation of
|
|
algorithms, creation of user interfaces, and interfacing with programs
|
|
written in other languages, including C, C++, C#, Java, Fortran and Python.
|
|
|
|
Note: MATLAB is licensed software. You will need to create an account on
|
|
the MathWorks homepage and download MATLAB yourself. Spack will search your
|
|
current directory for the download file. Alternatively, add this file to a
|
|
mirror so that Spack can find it. For instructions on how to set up a
|
|
mirror, see http://spack.readthedocs.io/en/latest/mirrors.html"""
|
|
|
|
homepage = "https://www.mathworks.com/products/matlab.html"
|
|
manual_download = True
|
|
|
|
version('R2018b', sha256='8cfcddd3878d3a69371c4e838773bcabf12aaf0362cc2e1ae7e8820845635cac')
|
|
version('R2016b', 'b0e0b688894282139fa787b5a86a5cf7')
|
|
|
|
variant(
|
|
'mode',
|
|
default='interactive',
|
|
values=('interactive', 'silent', 'automated'),
|
|
description='Installation mode (interactive, silent, or automated)'
|
|
)
|
|
|
|
variant(
|
|
'key',
|
|
default='<installation-key-here>',
|
|
values=lambda x: True, # Anything goes as a key
|
|
description='The file installation key to use'
|
|
)
|
|
|
|
# Licensing
|
|
license_required = True
|
|
license_comment = '#'
|
|
license_files = ['licenses/license.dat']
|
|
license_vars = ['LM_LICENSE_FILE']
|
|
license_url = 'https://www.mathworks.com/help/install/index.html'
|
|
|
|
extendable = True
|
|
|
|
def url_for_version(self, version):
|
|
return "file://{0}/matlab_{1}_glnxa64.zip".format(os.getcwd(), version)
|
|
|
|
def configure(self, spec, prefix):
|
|
config = {
|
|
'destinationFolder': prefix,
|
|
'mode': spec.variants['mode'].value,
|
|
'fileInstallationKey': spec.variants['key'].value,
|
|
'licensePath': self.global_license_file
|
|
}
|
|
|
|
# Store values requested by the installer in a file
|
|
with open('spack_installer_input.txt', 'w') as input_file:
|
|
for key in config:
|
|
input_file.write('{0}={1}\n'.format(key, config[key]))
|
|
|
|
def install(self, spec, prefix):
|
|
self.configure(spec, prefix)
|
|
|
|
# Run silent installation script
|
|
# Full path required
|
|
input_file = join_path(
|
|
self.stage.source_path, 'spack_installer_input.txt')
|
|
subprocess.call(['./install', '-inputFile', input_file])
|