forked from solgenomics/yapri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
45 lines (34 loc) · 921 Bytes
/
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
use strict;
use Module::Build;
my $build = Module::Build->new(
module_name => 'R::YapRI',
dist_name => 'R-YapRI',
dist_author => 'Aureliano Bombarely',
dist_abstract => 'Yet another perl R interface',
license => 'perl',
# current version of our core libraries distribution
dist_version => '0.08',
recursive_test_files => 1,
# and now the list of perl module dependencies
requires => {
'perl' => '5.8.0',
},
meta_merge => {
resources => {
repository => 'https://github.com/solgenomics/yapri',
},
},
build_requires => {
'Test::More' => 0,
'Test::Exception' => 0,
'Test::Warn' => 0,
'Image::Size' => 0,
'String::Random' => 0,
'autodie' => 0,
'File::Path' => 2.07,
},
);
$build->create_build_script;
###
1;#
###