summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/nag/package.py
blob: c6c33ecad5006b59e69d0a8d41dc01c8d30434c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from spack import *
import os

class Nag(Package):
    """The NAG Fortran Compiler."""
    homepage = "http://www.nag.com/nagware/np.asp"

    version('6.1', '1e29d9d435b7ccc2842a320150b28ba4')
    version('6.0', '3fa1e7f7b51ef8a23e6c687cdcad9f96')

    # Licensing
    license_required = True
    license_comment  = '!'
    license_files    = ['lib/nag.key',
                        'lib/nag.licence',
                        'lib/nagware.licence']
    license_vars     = ['NAG_KUSARI_FILE']
    license_url      = 'http://www.nag.com/doc/inun/np61/lin-mac/klicence.txt'


    def url_for_version(self, version):
        # TODO: url and checksum are architecture dependent
        # TODO: We currently only support x86_64
        return 'http://www.nag.com/downloads/impl/npl6a%sna_amd64.tgz' % \
                str(version).replace('.', '')


    def install(self, spec, prefix):
        # Set installation directories
        os.environ['INSTALL_TO_BINDIR'] = prefix.bin
        os.environ['INSTALL_TO_LIBDIR'] = prefix.lib
        os.environ['INSTALL_TO_MANDIR'] = prefix + '/share/man/man'

        # Run install script
        os.system('./INSTALLU.sh')