-
Notifications
You must be signed in to change notification settings - Fork 1
/
Build.PL
41 lines (37 loc) · 1.11 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
use strict;
use warnings;
use File::Spec;
use Module::Build;
my $file = File::Spec->catfile( "lib", "JCMT", "Tau.pm" );
my $build = Module::Build->new
(
module_name => "JCMT::Tau",
abstract_from => $file,
license => "gpl",
author => [
'Tim Jenness <[email protected]>',
],
dist_version => '1.11',
meta_merge => {
resources => {
repository => "git://github.com/eaobservatory/perl-JCMT-Tau.git",
},
},
requires => {
"DateTime" => 0,
"DateTime::TimeZone" => 0,
"DateTime::Format::Strptime" => 0,
"DateTime::Format::ISO8601" => 0,
"Statistics::Descriptive::Discrete" => 0,
},
recommends => {
"SOAP::Lite" => 0,
"GD::Graph" => 0,
},
build_requires => {
"Test::More" => 0,
"Test::Number::Delta" => 0,
},
c_source => [ "src", "wvm-src" ],
);
$build->create_build_script;