summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-05-10 01:04:46 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-05-10 01:04:46 -0700
commit1cc94a0f79e04945a31f70be859b34749b6bf34c (patch)
treed31d3d690c528cd25118211b870c7bf55a5cbb0b /var
parentcbfba84aa2939f78bbb643365414b8a488b39213 (diff)
parent1a585a6c748d9445ff691e766efba350259364b5 (diff)
downloadspack-1cc94a0f79e04945a31f70be859b34749b6bf34c.tar.gz
spack-1cc94a0f79e04945a31f70be859b34749b6bf34c.tar.bz2
spack-1cc94a0f79e04945a31f70be859b34749b6bf34c.tar.xz
spack-1cc94a0f79e04945a31f70be859b34749b6bf34c.zip
Merge branch 'efischer/160425-nccmp' of git://github.com/citibeth/spack into citibeth-efischer/160425-nccmp
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/nccmp/package.py30
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")