-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
31 lines (28 loc) · 953 Bytes
/
Build.PL
File metadata and controls
31 lines (28 loc) · 953 Bytes
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
#!/usr/bin/perl -w
use strict;
use warnings;
use lib 'lib';
use DictyTools::Builder;
my $builder = DictyTools::Builder->new(
module_name => 'DictyTools',
license => 'perl',
dist_author => 'Yulia Bushmanova <y-bushmanova@northwestern.edu>',
dist_version => '2.0.0',
requires => {
'Mojolicious' => '0.999938',
'Plack' => '0.9941',
'FCGI::Engine' => '0.16',
'Mojolicious::Plugin::Bundle' => '0.001',
'SOAP::Lite' => '',
'IO::String' => '',
'Bio::Perl' => '',
'File::Path' => '2.04',
'Bio::Chado::Schema' => '',
'Bio::Graphics' => ''
},
build_requires => { 'Archive::Extract' => '', },
add_to_cleanup => ['DictyTools-*'],
create_readme => 1,
);
$builder->create_build_script();
1;