diff options
author | Russ Allbery <rra@dropbox.com> | 2016-02-03 12:44:33 -0800 |
---|---|---|
committer | Russ Allbery <rra@dropbox.com> | 2016-02-03 12:44:33 -0800 |
commit | 2a53df4444cb8a931e82c584288025e315f40121 (patch) | |
tree | 7c8b9bfa69cf613a22ba6be616a0d3fdb4146e4e /perl/Build.PL | |
parent | 294d46a917b6aa3af305c3d50b8d83a1f3fb5694 (diff) | |
parent | e64d4e31146b87046916c377557f8ea789da3f0a (diff) |
Merge branch 'debian/master' into ubuntu/precise
Diffstat (limited to 'perl/Build.PL')
-rw-r--r-- | perl/Build.PL | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/perl/Build.PL b/perl/Build.PL index 968ae37..c50e569 100644 --- a/perl/Build.PL +++ b/perl/Build.PL @@ -3,6 +3,7 @@ # Build script for the wallet distribution. # # Written by Russ Allbery <eagle@eyrie.org> +# Copyright 2016 Russ Allbery <eagle@eyrie.org> # Copyright 2014 # The Board of Trustees of the Leland Stanford Junior University # @@ -19,7 +20,7 @@ my $build = Module::Build->new( dist_abstract => 'Secure credential management system', dist_author => 'Russ Allbery <eagle@eyrie.org>', dist_name => 'Wallet', - dist_version => '1.01', + dist_version_from => 'lib/Wallet/Server.pm', license => 'mit', module_name => 'Wallet::Server', recursive_test_files => 1, @@ -36,12 +37,16 @@ my $build = Module::Build->new( perl => '5.008', }, recommends => { - 'Authen::SASL' => 0, - 'Heimdal::Kadm5' => 0, - 'Net::Duo' => 0, - 'Net::LDAP' => 0, - 'Net::Remctl' => 0, - WebAuth => 0, + 'Authen::SASL' => 0, + 'Crypt::GeneratePassword' => 0, + 'DateTime::Format::SQLite' => 0, + 'DBD::SQLite' => 0, + 'Heimdal::Kadm5' => 0, + 'IPC::Run' => 0, + 'Net::Duo' => 0, + 'Net::LDAP' => 0, + 'Net::Remctl' => 0, + WebAuth => 0, }, ); |