diff options
author | Adam Moody <moody20@llnl.gov> | 2014-08-01 17:24:56 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2014-08-04 07:54:04 -0700 |
commit | 712a2c374284420c7c6d0a53e43b32577ae9471f (patch) | |
tree | 57bf1975a9d8f2045db8374eb44c44fc91453ca2 /var | |
parent | a32816c644450a8c419a2bbc19b020674dae547e (diff) | |
download | spack-712a2c374284420c7c6d0a53e43b32577ae9471f.tar.gz spack-712a2c374284420c7c6d0a53e43b32577ae9471f.tar.bz2 spack-712a2c374284420c7c6d0a53e43b32577ae9471f.tar.xz spack-712a2c374284420c7c6d0a53e43b32577ae9471f.zip |
fileutils package
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/packages/fileutils/package.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/var/spack/packages/fileutils/package.py b/var/spack/packages/fileutils/package.py new file mode 100644 index 0000000000..8ddd3d060b --- /dev/null +++ b/var/spack/packages/fileutils/package.py @@ -0,0 +1,23 @@ +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" + + versions = { '0.0.1-alpha.4' : 'a01dbe5a2e03f3c70c7a98ec0a2554e1' } + + force_url = True + + depends_on('mpi') + depends_on('libcircle') + depends_on('libarchive') + depends_on('dtcmp') + + def install(self, spec, prefix): + configure("--prefix=" + prefix, + "--with-libdtcmp=" + spec['dtcmp'].prefix) + make() + make("install") |