Add package jblob-3.0 (#15400)

This commit is contained in:
Amjad Kotobi 2020-03-12 19:35:30 +01:00 committed by GitHub
parent d87f09cc5e
commit ed5b10d11f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,35 @@
# 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 Jblob(Package):
"""
The German Climate Computing Center
(DKRZ: Deutsches Klimarechenzentrum GmbH)
provides a Long Term Archiving Service for large research
data sets which are relevant for climate or Earth system research.
"""
homepage = "https://cera-www.dkrz.de/WDCC/ui/cerasearch"
url = "https://cera-www.dkrz.de/jblob/jblob-3.0.zip"
maintainers = ['ajkotobi']
version('3.0', sha256='576b5956358386a8832c6d1d13c410705e54888354a10cfd4f094513458067e4')
depends_on('java@8:', type='run')
def setup_run_environment(self, env):
env.set('JAVA_HOME', self.spec['java'].prefix)
def install(self, spec, prefix):
filter_file('/opt/jblob-' + self.version, prefix, 'jblob')
mkdir(prefix.bin)
install('jblob', prefix.bin)
install_tree('lib', prefix.lib)
install_tree('docs', prefix.docs)