-
Notifications
You must be signed in to change notification settings - Fork 2
/
Build.PL
25 lines (23 loc) · 952 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
use 5.012;
use Module::Build;
my $build = Module::Build->new(
module_name => 'PostgresTools',
dist_abstract => 'Backup and Restore scripts for PostgreSQL',
dist_author => 'Robert Abraham <[email protected]>',
dist_version_from => 'lib/PostgresTools.pm',
license => 'mit',
build_requires => { 'Module::Build' => 0.38, },
requires => {
'Moo' => 0,
'DBD::Pg' => 0,
'Getopt::Long' => 0,
'File::Path' => 0,
'File::Rsync' => 0,
'DateTime' => 0,
'DateTime::Format::Strptime' => 0,
'Parallel::ForkManager' => 0,
'Term::ProgressBar' => 0,
},
script_files => [ 'bin/dump.pl', 'bin/dump93.pl', 'bin/restore.pl', 'bin/restore93.pl', 'bin/diff.pl', 'bin/analyze.pl' ],
);
$build->create_build_script;