1234567891011121314151617181920212223 |
- name = 'MATLAB'
- version = '2017a'
- homepage = 'http://www.mathworks.com/products/matlab'
- description = """MATLAB is a high-level language and interactive environment
- that enables you to perform computationally intensive tasks faster than with
- traditional programming languages such as C, C++, and Fortran."""
- toolchain = {'name': 'dummy', 'version': ''}
- # be sure to copy both DVD content to the SAME directory,
- # including the hidden files, especially .dvd1 and .dvd2
- sources = [SOURCELOWER_TAR_GZ]
- dependencies = [('Java', '1.8.0_212')]
- import os
- license_server = os.getenv('EB_MATLAB_LICENSE_SERVER', 'matlab-lic-one.sipr.ucl.ac.be')
- license_server_port = os.getenv('EB_MATLAB_LICENSE_SERVER_PORT', '27000')
- key = os.getenv('EB_MATLAB_KEY', '23627-03737-21424-33859-38222-52037-11304-55330-60141-42965-56522-14541')
- #tmpdir = os.getenv('TMPDIR', '/truetmp')
- moduleclass = 'math'
|