mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-07 23:42:12 +01:00
41 lines
1.1 KiB
Plaintext
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'
|
|
|