-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
32 lines (30 loc) · 974 Bytes
/
Makefile.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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
AUTHOR => 'Brandon McCaig <[email protected]>',
EXE_FILES => [qw(bin/bambot)],
LICENSE => 'GNU GPLv2+',
NAME => 'Bambot',
PREREQ_PM => {
'Carp' => 0,
'Class::Unload' => 0,
'Data::Dumper' => 0,
'DateTime' => 0,
'DateTime::Format::Duration' => 0,
'DateTime::Format::ISO8601' => 0,
'DateTime::Format::Natural' => 0,
'Digest::SHA1' => 0,
'Errno::AnyString' => 0,
'ExtUtils::MakeMaker' => 0,
'File::Find' => 0,
'File::Write::Rotate' => 0,
'File::Slurp' => 0,
'Getopt::Long' => 0,
'IO::Handle' => 0,
'IO::Select' => 0,
'IO::Socket::INET' => 0,
'List::Util' => 0,
'local::lib' => 0,
},
VERSION_FROM => 'lib/Bambot/Version.pm');