From: W. Trevor King Date: Sat, 28 May 2011 17:18:28 +0000 (-0400) Subject: Add Build.PL for easy installation. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0f5d08c7b0316114e4cc5cd521ae2f6a11a9f6bf;p=monkeysphere-validation-agent.git Add Build.PL for easy installation. --- diff --git a/Build.PL b/Build.PL new file mode 100644 index 0000000..5927984 --- /dev/null +++ b/Build.PL @@ -0,0 +1,25 @@ +use strict; +use warnings; +use diagnostics; +use Module::Build; + +my $cm = Module::Build->new + ( + module_name => 'Crypt::Monkeysphere', + license => 'gpl', + requires => { + 'Config::General' => '2.49', + 'Crypt::X509' => '0.21', + 'File::HomeDir' => '0.93', +# 'GnuPG::Handles' => '0.42', (part of GnuPG::Interface) + 'GnuPG::Interface' => '0.42', + 'HTTP::Headers' => '6.00', + 'HTTP::Request' => '6.00', + 'HTTP::Server::Simple' => '0.42', + 'JSON' => '2.27', + 'Regexp::Common' => '2010010201', + }, + dist_version_from => 'lib/Crypt/Monkeysphere/MSVA.pm', + dist_abstract => 'Monkeysphere public key validation daemon', + ); +$cm->create_build_script;