diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2014-09-18 21:33:09 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2014-09-18 21:33:09 -0700 |
commit | 4d2ccfa02842eb152cf7a9bfd3e91cde6e8c6816 (patch) | |
tree | d861f96415ccb263ff6da57b76c81a292df5db11 | |
parent | e85830e3133b793d6da32c8d546a2f8d15d220d9 (diff) | |
download | spack-4d2ccfa02842eb152cf7a9bfd3e91cde6e8c6816.tar.gz spack-4d2ccfa02842eb152cf7a9bfd3e91cde6e8c6816.tar.bz2 spack-4d2ccfa02842eb152cf7a9bfd3e91cde6e8c6816.tar.xz spack-4d2ccfa02842eb152cf7a9bfd3e91cde6e8c6816.zip |
Take fileutils out and just merge the deps into develop.
-rw-r--r-- | var/spack/packages/fileutils/package.py | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/var/spack/packages/fileutils/package.py b/var/spack/packages/fileutils/package.py deleted file mode 100644 index 73398a826c..0000000000 --- a/var/spack/packages/fileutils/package.py +++ /dev/null @@ -1,22 +0,0 @@ -import os -from spack import * - -class Fileutils(Package): - """FileUtils provides a suite of MPI-based tools to manage large files - and datasets on parallel file systems.""" - - homepage = "https://github.com/hpc/fileutils" - url = "https://github.com/hpc/fileutils/releases/download/v0.0.1-alpha.4/fileutils-0.0.1-alpha.4.tar.gz" - - version('0.0.1-alpha.4', 'e37b48ea43c95f5a1ede0ee01019ae58') - - depends_on('mpi') - depends_on('libcircle') - depends_on('libarchive') - depends_on('dtcmp') - - def install(self, spec, prefix): - configure("--prefix=" + prefix, - "--with-dtcmp=" + spec['dtcmp'].prefix) - make() - make("install") |