Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add hepmcmerger #647

Merged
merged 13 commits into from
Nov 5, 2024
3 changes: 2 additions & 1 deletion packages/hepmcmerger/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from spack.package import *


class Hepmcmerger(Package):
class Hepmcmerger(CMakePackage):
"""An EIC HepMC merger to combine signal and background events."""

# FIXME: Add a proper url for your package's homepage here.
Expand All @@ -29,6 +29,7 @@ class Hepmcmerger(Package):

depends_on("hepmc3")
depends_on("root")
depends_on("cmake", type="build")
kkauder marked this conversation as resolved.
Show resolved Hide resolved

def cmake_args(self):
args = []
Expand Down
Loading