easyconfigs-it4i/_not_installed/b/BioPerl/BioPerl-1.6.924-foss-2016a-Perl-5.22.1.eb
2017-03-22 09:44:28 +01:00

41 lines
1.1 KiB
Plaintext

easyblock = 'Bundle'
name = 'BioPerl'
version = '1.6.924'
versionsuffix = '-Perl-%(perlver)s'
homepage = 'http://www.bioperl.org/'
description = """Bioperl is the product of a community effort to produce Perl code which is useful in biology.
Examples include Sequence objects, Alignment objects and database searching objects."""
toolchain = {'name': 'foss', 'version': '2016a'}
# this is a bundle of Perl modules
exts_defaultclass = 'PerlModule'
exts_filter = ("perldoc -lm %(ext_name)s ", "")
dependencies = [
('Perl', '5.22.1'),
('DB_File', '1.835', versionsuffix),
]
exts_list = [
# CGI has been removed from the Perl core since version 5.22
('CGI', '4.28', {
'source_tmpl': 'CGI-4.28.tar.gz',
'source_urls': ['https://cpan.metacpan.org/authors/id/L/LE/LEEJO/'],
}),
(name, version, {
'modulename': 'Bio::Perl',
'source_tmpl': 'release-%s.tar.gz' % version.replace('.', '-'),
'source_urls': ['https://github.com/bioperl/bioperl-live/archive/'],
}),
]
modextrapaths = {
'PERL5LIB': 'lib/perl5/site_perl/%(perlver)s/'
}
moduleclass = 'bio'