summaryrefslogtreecommitdiff
path: root/perl/Build.PL
diff options
context:
space:
mode:
authorRuss Allbery <eagle@eyrie.org>2016-01-17 19:43:13 -0800
committerRuss Allbery <eagle@eyrie.org>2016-01-17 19:43:13 -0800
commitcf5297c4ec8815ecc7f5139ef05b9867843db2f7 (patch)
treefef6ba149883530c7e7fba771be6ac2e59c4dfe9 /perl/Build.PL
parent7e03241ce323be7447b085a8e7b07b78c770b0dc (diff)
parent4b3f858ef567c0d12511e7fea2a56f08f2729635 (diff)
Merge tag 'upstream/1.3' into debian/master
Upstream version 1.3
Diffstat (limited to 'perl/Build.PL')
-rw-r--r--perl/Build.PL19
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,
},
);