cxxtest: added new package (#21323)

This commit is contained in:
bryanherman 2021-01-27 10:26:26 -05:00 committed by GitHub
parent fbdc8b65b1
commit c52e95d681
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,18 @@
# Copyright 2013-2021 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 Cxxtest(Package):
"""C++ unit test system."""
homepage = "https://cxxtest.com/"
url = "https://sourceforge.net/projects/cxxtest/files/cxxtest/4.4/cxxtest-4.4.tar.gz/download"
version('4.4', sha256='1c154fef91c65dbf1cd4519af7ade70a61d85a923b6e0c0b007dc7f4895cf7d8')
def install(self, spec, prefix):
install_tree(self.stage.source_path, prefix)