lcgenv: add new package (#29436)
This commit is contained in:
parent
3c1f87099b
commit
0b7eca36d1
1 changed files with 20 additions and 0 deletions
20
var/spack/repos/builtin/packages/lcgenv/package.py
Normal file
20
var/spack/repos/builtin/packages/lcgenv/package.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
# 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 Lcgenv(Package):
|
||||
"""This package provides environment for packages in SFT LCG releases."""
|
||||
|
||||
homepage = "https://gitlab.cern.ch/GENSER/lcgenv"
|
||||
url = "https://gitlab.cern.ch/GENSER/lcgenv/-/archive/v1.3.19/lcgenv-v1.3.19.tar.gz"
|
||||
|
||||
maintainers = ['haralmha']
|
||||
|
||||
version('1.3.19', sha256='b091743705cf84ff5de60487f2f73cbf9d10676577cd1d99bbde00d3616d0751')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
install_tree('.', prefix)
|
Loading…
Reference in a new issue