-
Notifications
You must be signed in to change notification settings - Fork 1
/
Build.PL
37 lines (34 loc) · 1.08 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
# -*-cperl-*-
use strict;
use warnings;
use Module::Build;
use File::Spec;
my $build = Module::Build->new
(
module_name => "PDL::IO::NDF",
license => "perl",
dist_abstract => 'Read PDLs from NDF files and write PDLs to NDF files',
dist_author => [
'Tim Jenness <[email protected]>',
'Douglas Burke <[email protected]>',
],
meta_merge => {
resources => {
repository => "git://github.com/Starlink/perl-PDL-IO-NDF.git",
homepage => "https://github.com/Starlink/perl-PDL-IO-NDF",
},
},
requires => {
'Astro::FITS::Header' => 3.0,
'PDL' => '2.040',
'NDF' => 1.51,
},
configure_requires => {
"Module::Build" => 0.3,
},
build_requires => {
"Test::More" => 0,
"Test::Number::Delta" => 0,
},
);
$build->create_build_script;