forked from easybuilders/easybuild-easyconfigs
-
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.
Merge pull request easybuilders#19201 from migueldiascosta/2023111116…
…5333_new_pr_IML105 {math}[gfbf/2022a] IML v1.0.5
- Loading branch information
Showing
1 changed file
with
25 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,25 @@ | ||
easyblock = 'ConfigureMake' | ||
|
||
name = 'IML' | ||
version = '1.0.5' | ||
|
||
homepage = 'https://cs.uwaterloo.ca/~astorjoh/iml.html' | ||
description = """IML is a free library of C source code which implements algorithms for computing | ||
exact solutions to dense systems of linear equations over the integers.""" | ||
|
||
toolchain = {'name': 'gfbf', 'version': '2022a'} | ||
|
||
source_urls = ['http://www.cs.uwaterloo.ca/~astorjoh'] | ||
sources = [SOURCELOWER_TAR_BZ2] | ||
checksums = ['1dad666850895a5709b00b97422e2273f293cfadea7697a9f90b90953e847c2a'] | ||
|
||
dependencies = [('GMP', '6.2.1')] | ||
|
||
configopts = '--with-cblas="$LIBBLAS" --with-gmp-include=$EBROOTGMP/include --with-gmp-lib=$EBROOTGMP/lib ' | ||
|
||
sanity_check_paths = { | ||
'files': ['include/iml.h', 'lib/libiml.a'], | ||
'dirs': ['share'], | ||
} | ||
|
||
moduleclass = 'math' |