@@ -15,11 +15,11 @@ class Lima(CMakePackage):
1515
1616 homepage = 'https://github.com/LIHPC-Computational-Geometry/lima'
1717 url = 'https://github.com/LIHPC-Computational-Geometry/lima/archive/refs/tags/0.0.0.tar.gz'
18- git = 'https://github.com/LIHPC-Computational-Geometry/lima.git'
18+ git = 'https://github.com/LIHPC-Computational-Geometry/lima.git'
1919 maintainers = ['meshing_team' ]
2020
2121 extends ("python" , when = '+scripting' ) # For the PYTHONPATH in the generated modules
22-
22+
2323# depends_on('sumesh +shared', type=('build', 'link'))
2424 depends_on ('swig' , type = ('build' ), when = '+scripting' )
2525 depends_on ('python +shared' , type = ('build' , 'link' ), when = '+scripting' )
@@ -33,10 +33,10 @@ class Lima(CMakePackage):
3333 description = 'Build xlmlima tool (converts and prepares meshes, necessary for non-regression tests)' )
3434 variant ('i4' , default = False , description = "int_type=int32 instead of int64" )
3535 variant ('r4' , default = False , description = "real=float instead of double" )
36- variant ('tests' , default = True ,
36+ variant ('tests' , default = True ,
3737 description = "Builds the mesh comparison tool (necessary for non-regression tests)" )
38- variant ('disable_mli_warning' , default = False ,
39- description = "Disables warning messages displayed when reading or writing a file in mli format (obsolete)" )
38+ variant ('disable_mli_warning' ,
39+ default = False , description = "Disables warning messages displayed when reading or writing a file in mli format (obsolete)" )
4040
4141 patch ('cmake.patch' , when = '@7.4.3' )
4242 patch ('cmake-7.6.0.patch' , when = '@7.6.0' )
@@ -65,8 +65,7 @@ def cmake_args(self):
6565 self .define_from_variant ('BUILD_SCRIPTING' , 'scripting' ),
6666 self .define_from_variant ('BUILD_XLMLIMA' , 'xlmlima' ),
6767 self .define_from_variant ('BUILD_TESTS' , 'tests' ),
68- self .define_from_variant ('DISABLE_MLI_WARNING' , 'disable_mli_warning' ),
69- ]
68+ self .define_from_variant ('DISABLE_MLI_WARNING' , 'disable_mli_warning' )]
7069
7170 args .append (self .define ('MACHINE_TYPES' , False ))
7271 args .append (self .define ('FORMAT_MLI' , False ))
0 commit comments