-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBuild.PL
More file actions
37 lines (34 loc) · 853 Bytes
/
Build.PL
File metadata and controls
37 lines (34 loc) · 853 Bytes
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
#
# $Id: Build.PL,v 604fb44b35f9 2025/03/27 09:23:31 gomor $
#
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Onyphe',
license => 'bsd',
dist_author => 'ONYPHE <contact_at_onyphe.io>',
dist_version_from => 'lib/Onyphe.pm',
requires => {
'Mojolicious' => 0,
'Config::INI::Tiny' => 0,
'Tie::IxHash' => 0,
'LWP::Protocol::https' => 0,
'JSON::XS' => 0,
'Text::ParseWords' => 0,
'Storable' => 0,
'Carp' => 0,
'Data::Dumper' => 0,
'File::Slurp' => 0,
'File::Temp' => 0,
'Net::IPv4Addr' => 0,
'Regexp::IPv4' => 0,
'Regexp::IPv6' => 0,
'Text::CSV_XS' => 0,
},
configure_requires => {
'Module::Build' => 0,
},
script_files => [ qw(bin/onyphe bin/opp) ],
);
$builder->create_build_script;