hadoop-xrootd: add new package (#29401)
This commit is contained in:
parent
2111cf8044
commit
89e2ee70e2
26
var/spack/repos/builtin/packages/hadoop-xrootd/package.py
Normal file
26
var/spack/repos/builtin/packages/hadoop-xrootd/package.py
Normal file
@ -0,0 +1,26 @@
|
||||
# Copyright 2013-2022 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 HadoopXrootd(MavenPackage):
|
||||
"""Connector between Hadoop and XRootD protocols (EOS compatible)."""
|
||||
|
||||
homepage = "https://gitlab.cern.ch/db/hadoop-xrootd"
|
||||
url = "https://lcgpackages.web.cern.ch/tarFiles/sources/hadoop-xrootd-v1.0.7.tar.gz"
|
||||
|
||||
maintainers = ['haralmha']
|
||||
|
||||
version('1.0.7', sha256='9a129dc14b3dc139aa4da7543f6392a5c80b41fea6bb9f6cd27db5acf6f5471f')
|
||||
|
||||
depends_on('hadoop')
|
||||
depends_on('xrootd')
|
||||
|
||||
def build_args(self):
|
||||
xrootd_prefix = self.spec['xrootd'].prefix
|
||||
return [
|
||||
'-Dxrootd.include.path={0}/include/xrootd'.format(xrootd_prefix)
|
||||
]
|
Loading…
Reference in New Issue
Block a user