HushList Protocol Whitepaper
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

32 lines
937 B

use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Hush',
license => 'perl',
dist_author => 'Duke Leto <duke@leto.net>',
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";