Initial version of PIDX package
This commit is contained in:
parent
c8f65c1530
commit
40b21d7cbe
18
var/spack/packages/pidx/package.py
Normal file
18
var/spack/packages/pidx/package.py
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
from spack import *
|
||||||
|
|
||||||
|
class Pidx(Package):
|
||||||
|
"""PIDX Parallel I/O Library"""
|
||||||
|
|
||||||
|
homepage = "http://www.cedmav.com/pidx"
|
||||||
|
#url = "http://www.example.com/pidx-1.0.tar.gz"
|
||||||
|
|
||||||
|
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")
|
Loading…
Reference in New Issue
Block a user