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.
- Loading branch information
Samuel Moors
committed
Jan 17, 2024
1 parent
9542ea0
commit eca6fcc
Showing
2 changed files
with
32 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
31 changes: 31 additions & 0 deletions
31
easybuild/easyconfigs/d/DB_File/DB_File-1.859-GCCcore-12.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,31 @@ | ||
easyblock = 'PerlModule' | ||
|
||
name = 'DB_File' | ||
version = '1.859' | ||
|
||
homepage = 'https://perldoc.perl.org/DB_File.html' | ||
description = """Perl5 access to Berkeley DB version 1.x.""" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '12.3.0'} | ||
|
||
source_urls = ['https://www.cpan.org/modules/by-module/DB_File/PMQS'] | ||
sources = [SOURCE_TAR_GZ] | ||
checksums = ['5674e0d2cd0b060c4d1253670ea022c64d842a55257f9eb8edb19c0f53e2565c'] | ||
|
||
builddependencies = [ | ||
('binutils', '2.40'), | ||
] | ||
|
||
dependencies = [ | ||
('Perl', '5.36.1'), | ||
('DB', '18.1.40'), | ||
] | ||
|
||
preconfigopts = 'env DB_FILE_INCLUDE="$EBROOTDB/include" DB_FILE_LIB="$EBROOTDB/lib" ' | ||
|
||
sanity_check_paths = { | ||
'files': ['lib/perl5/site_perl/%(perlver)s/x86_64-linux-thread-multi/DB_File.pm'], | ||
'dirs': [], | ||
} | ||
|
||
moduleclass = 'data' |