-
Notifications
You must be signed in to change notification settings - Fork 48
/
Build.PL
executable file
·60 lines (58 loc) · 1.72 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
use 5.006;
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Crypt::HSXKPasswd',
license => 'bsd',
dist_abstract => q{A secure memorable password generator inspired by Steve Gibson's Password Haystacks (https://www.grc.com/haystack.htm), and the famous XKCD password cartoon (https://xkcd.com/936/).},
dist_author => q{Bart Busschots <[email protected]>},
dist_version_from => 'lib/Crypt/HSXKPasswd.pm',
release_status => 'stable',
configure_requires => {
'Module::Build' => 0,
},
build_requires => {
'Test::More' => 0,
'File::Share' => 0,
'File::Spec' => 0,
},
requires => {
perl => '5.16.0',
Carp => 0,
English => 0,
Fatal => 0,
DateTime => 0,
Clone => 0,
Readonly => 0,
JSON => 0,
'Getopt::Long' => 0,
'List::MoreUtils' => 0,
'Math::BigInt' => 0,
'Math::Round' => 0,
'Scalar::Util' => 0,
'Text::Unidecode' => 0,
'Type::Tiny' => 0,
'Type::Library' => 0,
'Types::Standard' => 0,
'Type::Params' => 0,
'Data::Dumper' => 0,
'Pod::Usage' => 0,
'Module::Load' => 0,
'File::HomeDir' => 0,
},
recommends => {
'Data::Entropy::Algorithms' => 0,
'Devel::StackTrace' => 0,
'Email::Valid' => 0,
'LWP::UserAgent' => 0,
'Math::Random::Secure' => 0,
'Mozilla::CA' => 0,
URI => 0,
},
add_to_cleanup => [ 'Crypt-HSXKPasswd-*' ],
create_makefile_pl => 'traditional',
share_dir => 'share',
create_readme => 1,
);
$builder->create_build_script();