diff options
author | Elizabeth Fischer <elizabeth.fischer@columbia.edu> | 2016-04-25 22:18:38 -0400 |
---|---|---|
committer | Elizabeth F <rpf2116@columbia.edu> | 2016-04-25 22:25:08 -0400 |
commit | 1a585a6c748d9445ff691e766efba350259364b5 (patch) | |
tree | c3a17cba4c60595cf8ea9254ca8840611ed4bbf9 /var | |
parent | ed16bd133afd4c4da48f9d92e0d8578fd3719c72 (diff) | |
download | spack-1a585a6c748d9445ff691e766efba350259364b5.tar.gz spack-1a585a6c748d9445ff691e766efba350259364b5.tar.bz2 spack-1a585a6c748d9445ff691e766efba350259364b5.tar.xz spack-1a585a6c748d9445ff691e766efba350259364b5.zip |
Added nccmp package
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/nccmp/package.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/nccmp/package.py b/var/spack/repos/builtin/packages/nccmp/package.py new file mode 100644 index 0000000000..458afbb1e8 --- /dev/null +++ b/var/spack/repos/builtin/packages/nccmp/package.py @@ -0,0 +1,30 @@ +from spack import * +import os + +class Nccmp(Package): + """Compare NetCDF Files""" + homepage = "http://nccmp.sourceforge.net/" + url = "http://downloads.sourceforge.net/project/nccmp/nccmp-1.8.2.0.tar.gz" + + version('1.8.2.0', '81e6286d4413825aec4327e61a28a580') + + depends_on('netcdf') + + def install(self, spec, prefix): + # Configure says: F90 and F90FLAGS are replaced by FC and + # FCFLAGS respectively in this configure, please unset + # F90/F90FLAGS and set FC/FCFLAGS instead and rerun configure + # again. + os.environ['FC'] = os.environ['F90'] + del os.environ['F90'] + try: + os.environ['FCFLAGS'] = os.environ['F90FLAGS'] + del os.environ['F90FLAGS'] + except KeyError: # There are no flags + pass + + configure('--prefix=%s' % prefix) + + make() + make("check") + make("install") |