-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
38 lines (35 loc) · 1.04 KB
/
Makefile.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
use strict;
use warnings;
use 5.008;
use ExtUtils::MakeMaker;
WriteMakefile
(
NAME => 'sRNAPipe',
AUTHOR => 'Romain Pogorelcnik <[email protected]>',
VERSION_FROM => 'lib/sRNAPipe.pm',
ABSTRACT_FROM => 'lib/sRNAPipe.pm',
LICENSE => 'open_source',
PREREQ_PM => {
'File::Basename' => '0',
'Getopt::Long' => '2.50',
'Parallel::ForkManager' => '1.17',
'Statistics::R' => '0.34',
'String::Random' => '0',
'File::Copy::Recursive' => '0.38',
'Math::CDF' => '0.1',
},
EXE_FILES => [
'script/srnapipe'
],
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/GReD-Clermont/sRNAPipe-cli',
web => 'https://github.com/GReD-Clermont/sRNAPipe-cli',
},
bugtracker => {web => 'https://github.com/GReD-Clermont/sRNAPipe-cli/issues'},
},
},
);