
* acts-dd4hep: new package, separated from new acts@19.1.0 * acts-dd4hep: improved versioning * acts-dd4hep: don't use curl | sha256sum * acts: new variant `odd` for Open Data Detector * acts-dd4hep: style changes
20 lines
651 B
Python
20 lines
651 B
Python
# 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.package import *
|
|
|
|
|
|
class ActsDd4hep(CMakePackage):
|
|
"""Glue library to connect Acts to DD4hep"""
|
|
|
|
homepage = "https://github.com/acts-project/acts-dd4hep"
|
|
url = "https://github.com/acts-project/acts-dd4hep/archive/refs/tags/v1.0.0.tar.gz"
|
|
|
|
maintainers = ['HadrianG2', 'wdconinc']
|
|
|
|
version('1.0.0', sha256='991f996944c88efa837880f919239e50d12c5c9361e220bc9422438dd608308c')
|
|
|
|
depends_on('dd4hep@1.11: +dddetectors')
|