summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2015-08-26 23:48:52 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2015-08-26 23:48:52 -0700
commit13fd7426101779f804b4b1f2ee11f46f0288b6f0 (patch)
tree0d6d9d97475a771abefd894dfabd5e0ba2812155 /var
parent10bc981d0b6a5ac6913db39b1609e0b4801fdc2e (diff)
parentbabbc5bb4581e7a1912c2c6fe582479d6674f3d4 (diff)
downloadspack-13fd7426101779f804b4b1f2ee11f46f0288b6f0.tar.gz
spack-13fd7426101779f804b4b1f2ee11f46f0288b6f0.tar.bz2
spack-13fd7426101779f804b4b1f2ee11f46f0288b6f0.tar.xz
spack-13fd7426101779f804b4b1f2ee11f46f0288b6f0.zip
Merge branch 'features/pidx' into develop
Diffstat (limited to 'var')
-rw-r--r--var/spack/packages/pidx/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/packages/pidx/package.py b/var/spack/packages/pidx/package.py
new file mode 100644
index 0000000000..81aed62fb1
--- /dev/null
+++ b/var/spack/packages/pidx/package.py
@@ -0,0 +1,21 @@
+from spack import *
+
+class Pidx(Package):
+ """PIDX Parallel I/O Library.
+
+ PIDX is an efficient parallel I/O library that reads and writes
+ multiresolution IDX data files.
+ """
+
+ homepage = "http://www.cedmav.com/pidx"
+
+ version('1.0', git='https://github.com/sci-visus/PIDX.git',
+ commit='6afa1cf71d1c41263296dc049c8fabaf73c296da')
+
+ depends_on("mpi")
+
+ def install(self, spec, prefix):
+ with working_dir('spack-build', create=True):
+ cmake('..', *std_cmake_args)
+ make()
+ make("install")