File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
.ci/uenv-recipes/tmlqcd/daint-gh200/repo/packages/lemonio Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 88
99from spack .package import *
1010
11- class Lemonio (AutotoolsPackage , CMakePackage ):
11+
12+ class Lemonio (CMakePackage ):
1213 """LEMON: Lightweight Parallel I/O library for Lattice QCD."""
1314
1415 homepage = "https://github.com/etmc/lemon"
15- git = "https://github.com/etmc/lemon.git"
16+ git = "https://github.com/etmc/lemon.git"
1617 license ("GPL-3.0-or-later" )
1718
18- version (' master' , branch = ' master' )
19+ version (" master" , branch = " master" )
1920
2021 depends_on ("libtool" , type = "build" , when = "@master build_system=cmake" )
2122 depends_on ("cmake@4" , type = "build" , when = "master build_system=cmake" )
2223
23- depends_on (' mpi' )
24+ depends_on (" mpi" )
2425
2526 generator ("ninja" )
2627
28+
2729class CMakeBuilder (cmake .CMakeBuilder ):
2830 def cmake_args (self ):
2931 spec = self .spec
3032 args = [
3133 self .define_from_variant ("DBUILD_SHARED_LIBS" , "shared" ),
3234 ]
3335 return args
34-
You can’t perform that action at this time.
0 commit comments