-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBuild.PL
40 lines (35 loc) · 902 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
#!usr/bin/perl
use strict;
use warnings;
use Config;
use Module::Build;
use inc::MyBuilder;
my $requires = {
'Carp' => 0,
'Config::General' => 0,
'DBI' => 0,
'DBD::SQLite' => 0,
'File::Copy' => 0,
'File::Path' => 0,
'LINZ::Geodetic::CoordSysList' => 0,
'LINZ::Geodetic::Ellipsoid' => 0,
'Log::Log4perl' => 0,
'Math::Libm' => 0,
'Math::Trig' => 0,
'Net::FTP' => 0,
'Storable' => 0,
'Time::Local' => 0,
'URI' => 0,
'XML::Simple' => 0,
};
my $build = inc::MyBuilder->new(
module_name => 'LINZ::GNSS',
license => 'bsd',
dist_author => 'LINZ',
dist_version_from => 'lib/LINZ/GNSS.pm',
dist_abstract => 'Modules for accessing GNSS reference data',
requires => $requires,
create_makefile_pl => 'small',
);
$build->add_build_element('conf');
$build->create_build_script;