2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2018-04-21 23:28:44 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2018-04-21 23:28:44 +08:00
|
|
|
from spack import *
|
|
|
|
|
|
|
|
|
|
|
|
class Shocklibs(Package):
|
|
|
|
"""The lib for shock: An object store for scientific data."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/MG-RAST/Shock"
|
|
|
|
url = "https://github.com/MG-RAST/Shock/archive/v0.9.24.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('0.9.24', sha256='465d06f33df2570eaf3ffd535a38fc464084ac95a2f145ead5c71f34beeb0a35')
|
2018-04-21 23:28:44 +08:00
|
|
|
|
|
|
|
def install(self, spec, prefix):
|
|
|
|
install_tree('libs', prefix.libs)
|