forked from spack/spack
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 changed file
with
46 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Copyright 2013-2023 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 Sartre(CMakePackage): | ||
"""Sartre 1 is an event generator for exclusive diffractive vector | ||
meson production and DVCS in ep and eA collisions based on the | ||
dipole model.""" | ||
|
||
homepage = "https://sartre.hepforge.org" | ||
url = "https://sartre.hepforge.org/downloads/?f=sartre-1.39-src.tgz" | ||
list_url = "https://sartre.hepforge.org/downloads/" | ||
|
||
maintainers("wdconinc") | ||
|
||
version("1.39", sha256="82ed77243bea61bb9335f705c4b132f0b53d0de17c26b89389fa9cd3adcef44d") | ||
|
||
parallel = False | ||
|
||
depends_on("gsl") | ||
depends_on("root") | ||
depends_on("boost@1.39: +thread") | ||
|
||
# FIXME cuba is vendored in 1.39 | ||
# depends_on("cuba@4:") | ||
|
||
def patch(self): | ||
for file in ["CMakeLists.txt", "src/CMakeLists.txt", "gemini/CMakeLists.txt"]: | ||
filter_file( | ||
r"set\(CMAKE_CXX_STANDARD 11\)", | ||
'set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ standard")', | ||
file, | ||
) | ||
filter_file(r"\$\{CMAKE_INSTALL_PREFIX\}/sartre", "${CMAKE_INSTALL_PREFIX}", file) | ||
filter_file(r"DESTINATION sartre/", "DESTINATION ", file) | ||
|
||
def cmake_args(self): | ||
args = [ | ||
"-DCMAKE_CXX_STANDARD={0}".format(self.spec["root"].variants["cxxstd"].value), | ||
"-DMULTITHREADED=ON", | ||
] | ||
return args |