-
Notifications
You must be signed in to change notification settings - Fork 9
/
Build.PL
33 lines (31 loc) · 1.09 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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'SyncDiff',
dist_name => 'syncdiff',
dist_version => '0.1',
license => 'lgpl_2_1',
dist_author => 'warthog9@eaglescrag.net',
dist_abstract => 'SyncDiff(erent) is a statefull rsync-like file synchronizer. Think rsync + git + csync2 + unison',
requires => {
'Module::Build' => 0.4205,
'Moose' => 1.15,
'Parse::Lex' => 0,
'DBD::SQLite' => 1.27,
'Digest::SHA' => 5.47,
'Parse::Yapp::Driver' => 1.05,
'File::FnMatch' => 0.02,
'Try::Tiny' => 0.11,
'File::Rdiff' => 1.0,
'JSON::XS' => 2.27,
},
meta_merge => {
resources => {
repository => 'https://github.com/warthog9/syncdiff',
},
},
test => {TESTS => 't/*.t'}
);
$builder->create_build_script();
print "Have a great day!\n";