20 lines
614 B
Python
20 lines
614 B
Python
# Copyright 2013-2019 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', 'fe0fca073c3604110f0507f375d71e64')
|
|
|
|
depends_on('mpi')
|