-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
56 lines (53 loc) · 1.82 KB
/
Makefile.PL
File metadata and controls
56 lines (53 loc) · 1.82 KB
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
use strict;
use warnings;
use ExtUtils::MakeMaker;
use ExtUtils::MakeMaker::Config;
my $output = WriteMakefile(
NAME => 'App::Paws',
AUTHOR => 'Tom Harrison <tomhrr@tomhrr.org>',
VERSION_FROM => 'lib/App/Paws.pm',
ABSTRACT => 'Send/receive Slack message via email',
LICENSE => 'perl_5',
PL_FILES => {},
EXE_FILES => ['bin/paws-send',
'bin/paws-send-queued',
'bin/paws-receive',
'bin/paws-aliases',
'bin/paws-register'],
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'File::Slurp' => 0,
'HTML::Entities' => 0,
'JSON::XS' => 0,
'List::Util' => 0,
'LWP::UserAgent' => 0,
'MIME::Entity' => 0,
'MIME::Parser' => 0,
'YAML' => 0,
'IPC::Run3' => 0,
'IO::Capture::Stderr' => 0,
'IPC::Shareable' => 0,
'Digest::MD5' => 0,
'HTTP::Async' => 0,
'IO::Async' => 0,
'IO::Async::SSL' => 0,
'Net::Async::WebSocket::Client' => 0,
'DateTime' => 0,
'URI::Encode' => 0,
'constant::override' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'App-Paws-*' },
META_MERGE => {
resources => {
repository => 'https://github.com/tomhrr/paws'
}
},
);
1;