-
Notifications
You must be signed in to change notification settings - Fork 6
/
Build.PL
32 lines (30 loc) · 937 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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Hush',
license => 'perl',
dist_author => 'Duke Leto <[email protected]>',
dist_abstract => 'HushList-powered secure messaging',
dist_version => '0.03',
include_dirs => '',
build_requires => {
'Test::Most' => 0,
'Test::Exception' => 0,
},
configure_requires => { 'Module::Build' => 0.38 },
requires => {
'perl' => '5.008',
'URL::Encode' => '0.03',
'Bitcoin::RPC::Client' => '0.07',
'File::Slurp' => '9999.19',
},
add_to_cleanup => [ 'Hush-*' ],
meta_merge => {
resources => {
repository => 'http://github.com/leto/hushlist/tree/master'
},
},
);
$builder->create_build_script();
print "Have freakin' awesome day!\n";