-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
58 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# 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.build_systems.meson import MesonBuilder | ||
|
||
from spack import * | ||
|
||
MesonBuilder._std_args_orig = MesonBuilder.std_args | ||
|
||
|
||
def meson_args(pkg): | ||
args = MesonBuilder._std_args_orig(pkg) | ||
args.remove("-Dwrap_mode=nodownload") | ||
args.append("-Dwrap_mode=default") | ||
return args | ||
|
||
MesonBuilder.std_args = meson_args | ||
|
||
|
||
class CriterionGit(MesonPackage): | ||
"""A dead-simple, yet extensible, C and C++ unit testing framework.""" | ||
|
||
homepage = "https://github.com/Snaipe/Criterion/tree/master" | ||
git = "git@github.com:Snaipe/Criterion.git" | ||
|
||
maintainers = [ | ||
"smutch", | ||
] | ||
|
||
version("2.4.2", tag="v2.4.2", submodules=True) | ||
|
||
# depends_on("gettext") | ||
depends_on("meson@0.55.0:", type="build") | ||
depends_on("ninja", type="build") | ||
depends_on("cmake", type="build") | ||
depends_on("pkg-config", type="build") | ||
depends_on("libffi", type="build") | ||
depends_on("libgit2", type="build") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
repo: | ||
namespace: 'meraxes-repo' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.