forked from solgenomics/yapri
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
36 lines (26 loc) · 724 Bytes
/
Copy pathBuild.PL
File metadata and controls
36 lines (26 loc) · 724 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
32
33
34
35
36
use strict;
use Module::Build;
my $build = Module::Build->new(
dist_name => 'YapRI',
dist_author => 'Aureliano Bombarely',
dist_abstract => 'Yet another perl R interface',
license => 'perl',
create_makefile_pl => 'passthrough',
# current version of our core libraries distribution
dist_version => '0.1',
recursive_test_files => 1,
# and now the list of perl module dependencies
requires => {
'perl' => '5.10.0',
},
build_requires => {
'Test::More' => 0,
'Test::Exception' => 0,
'Test::Warn' => 0,
'Image::Size' => 0,
},
);
$build->create_build_script;
###
1;#
###