-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBuild.PL
59 lines (48 loc) · 2.52 KB
/
Build.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/perl -w
# This is a Module::Build script for Bioperl installation.
# See http://search.cpan.org/~kwilliams/Module-Build/lib/Module/Build.pm
use strict;
use lib '.';
use Module::Build;
# Set up the Bio::Root::Build object
my $build = Module::Build->new(
module_name => 'Biome',
description => 'Moose-based implementation of core BioPerl modules',
dist_name => 'Biome',
version => '0.001',
dist_author => 'BioPerl Team <[email protected]>',
dist_abstract => 'Moose-based implementation of core BioPerl modules',
license => 'perl',
requires => {'perl' => 5.010,
# replacement for pushback in IO streams
'IO::Unread' => 0,
'Method::Signatures' => 20121201,
# needed for Native Types (replacement for MXAH)
'Moose' => '1.00',
# tentative list of MooseX modules, for comments
# see CONVENTIONS
#'MooseX::Singleton' => 0,
# use sparingly (instances where this is used may be
# switched over to something simpler)
'MooseX::ClassAttribute' => 0,
# compat with Moose 0.90
'MooseX::Types' => 0.20,
#'MooseX::Types::Structured' => 0, # extended types
# Flexibility for attribute definitions
'MooseX::Role::Parameterized' => 0,
# init, attribute, method aliases
'MooseX::Aliases' => 0.03,
# not used ATM, but worth considering
#'MooseX::Params::Validate' => 0, # replace rearrange?
# general use
'Modern::Perl' => 0,
'List::MoreUtils' => 0,
'Data::Stag' => 0
},
build_requires => {
'Module::Build' => 0.2805,
},
recursive_test_files => 1,
);
# Create the build script and exit
$build->create_build_script;