-
Notifications
You must be signed in to change notification settings - Fork 713
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create GDGraph-1.56-GCCcore-12.2.0.eb
- Loading branch information
1 parent
415f16e
commit fba624b
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
easybuild/easyconfigs/g/GDGraph/GDGraph-1.56-GCCcore-12.2.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,62 @@ | ||
easyblock = 'Bundle' | ||
|
||
name = 'GDGraph' | ||
version = '1.56' | ||
|
||
homepage = 'https://metacpan.org/release/GDGraph' | ||
description = "GDGraph is a Perl package to generate charts" | ||
|
||
toolchain = {'name': 'GCCcore', 'version': '12.2.0'} | ||
|
||
source_urls = ['https://github.com/lstein/Perl-GD/archive/'] | ||
|
||
builddependencies = [ | ||
('binutils', '2.39'), | ||
('pkgconf', '1.9.3'), | ||
] | ||
|
||
dependencies = [ | ||
('Perl', '5.36.0'), | ||
('libgd', '2.3.3'), | ||
('libpng', '1.6.38'), | ||
('libjpeg-turbo', '2.1.4'), | ||
] | ||
|
||
# this is a bundle of Perl modules | ||
exts_defaultclass = 'PerlModule' | ||
exts_filter = ("perl -e 'require %(ext_name)s'", '') | ||
|
||
exts_list = [ | ||
('ExtUtils::PkgConfig', '1.16', { | ||
'source_urls': ['https://cpan.metacpan.org/authors/id/X/XA/XAOC/'], | ||
'sources': ['ExtUtils-PkgConfig-%(version)s.tar.gz'], | ||
'checksums': ['bbeaced995d7d8d10cfc51a3a5a66da41ceb2bc04fedcab50e10e6300e801c6e'], | ||
}), | ||
('GD', '2.76', { | ||
'source_urls': ['https://cpan.metacpan.org/authors/id/R/RU/RURBAN/'], | ||
'sources': ['GD-%(version)s.tar.gz'], | ||
'checksums': ['693d9e3d709e9188a682cb9090a77b70aac12a04e84128677577b94e4331775b'], | ||
}), | ||
('GD::Text', '0.86', { | ||
'source_urls': ['https://cpan.metacpan.org/authors/id/M/MV/MVERB/'], | ||
'sources': ['GDTextUtil-%(version)s.tar.gz'], | ||
'checksums': ['886ecbf85cfe94f4135ee5689c4847a9ae783ecb99e6759e12c734f2dd6116bc'], | ||
}), | ||
('GD::Graph', version, { | ||
'source_urls': ['https://cpan.metacpan.org/authors/id/B/BP/BPS/'], | ||
'sources': ['GDGraph-%(version)s.tar.gz'], | ||
'checksums': ['6f49cc4e59015480db9c9b6b18afd8c50be30886687b69411513d06f38971113'], | ||
}), | ||
] | ||
|
||
sanity_check_paths = { | ||
'files': ['bin/bdf2gdfont.pl'], | ||
'dirs': ['lib/perl5/site_perl/%(perlver)s/%(arch)s-linux-thread-multi', 'man'], | ||
} | ||
|
||
modextrapaths = {'PERL5LIB': [ | ||
'lib/perl5/site_perl/%(perlver)s', | ||
'lib/perl5/site_perl/%(perlver)s/%(arch)s-linux-thread-multi', | ||
]} | ||
|
||
moduleclass = 'bio |