20 lines
653 B
Python
20 lines
653 B
Python
# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class Papyrus(CMakePackage):
|
|
"""Parallel Aggregate Persistent Storage"""
|
|
|
|
homepage = "https://code.ornl.gov/eck/papyrus"
|
|
url = "https://code.ornl.gov/eck/papyrus/repository/archive.tar.bz2?ref=v1.0.0"
|
|
git = "https://code.ornl.gov/eck/papyrus.git"
|
|
|
|
version('develop', branch='master')
|
|
version('1.0.0', sha256='5d57c0bcc80de48951e42460785783b882087a5714195599d773a6eabde5c4c4')
|
|
|
|
depends_on('mpi')
|