-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile.PL
More file actions
36 lines (33 loc) · 817 Bytes
/
Makefile.PL
File metadata and controls
36 lines (33 loc) · 817 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
#
# $Id: Makefile.PL,v 604fb44b35f9 2025/03/27 09:23:31 gomor $
#
use strict;
use warnings;
use ExtUtils::MakeMaker;
require v5.6.1;
WriteMakefile(
NAME => 'Onyphe',
MIN_PERL_VERSION => '5.6.1',
VERSION_FROM => 'lib/Onyphe.pm',
LICENSE => 'bsd',
ABSTRACT_FROM => 'lib/Onyphe.pm',
AUTHOR => 'ONYPHE <contact_at_onyphe.io>',
PREREQ_PM => {
'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,
},
EXE_FILES => [ qw(bin/onyphe bin/opp) ],
);