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#19195 from migueldiascosta/2023111115…
…4642_new_pr_Givaro420 {math}[GCCcore/11.3.0] Givaro v4.2.0
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
easybuild/easyconfigs/g/Givaro/Givaro-4.2.0-GCCcore-11.3.0.eb
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,43 @@ | ||
## | ||
# This file is an EasyBuild recipe; see https://github.com/easybuilders/easybuild | ||
# | ||
# Copyright:: Copyright (c) 2016 Riccardo Murri <riccardo.murri@gmail.com> | ||
# Authors:: Riccardo Murri <riccardo.murri@gmail.com> | ||
# License:: GPL | ||
# | ||
## | ||
|
||
easyblock = 'ConfigureMake' | ||
|
||
name = 'Givaro' | ||
version = '4.2.0' | ||
|
||
homepage = 'https://github.com/linbox-team/givaro' | ||
description = "C++ library for arithmetic and algebraic computations" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '11.3.0'} | ||
|
||
source_urls = ['https://github.com/linbox-team/givaro/archive'] | ||
sources = ['v%(version)s.zip'] | ||
checksums = ['bf51b47ac9a02be233fc39ac78d959d13630bcc78997007ffec410d940ed4c64'] | ||
|
||
builddependencies = [ | ||
('Autotools', '20220317'), | ||
('binutils', '2.38'), | ||
] | ||
|
||
dependencies = [ | ||
('GMP', '6.2.1'), | ||
] | ||
|
||
preconfigopts = "env NOCONFIGURE=1 ./autogen.sh && " | ||
configopts = "--with-gmp=$EBROOTGMP --enable-inline" | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/givaro-config', 'include/givaro-config.h'], | ||
'dirs': ['bin', 'include', 'lib'], | ||
} | ||
|
||
sanity_check_commands = ["givaro-config --help"] | ||
|
||
moduleclass = 'math' |