-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
32 lines (31 loc) · 968 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(
NAME => 'yapcweb',
AUTHOR => q{Felipe da Veiga Leprevost <[email protected]>},
VERSION_FROM => 'lib/yapcweb.pm',
ABSTRACT => 'This is the YAPC::Brasil webserver',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'YAML' => 0,
'Dancer' => 0,
'Plack' => 0,
'Plack::Request' => 0,
'Template' => 0,
'HTTP::AcceptLanguage' => 0,
'Dancer::Plugin::I18N' => 0,
'Dancer::Plugin::Email' => 0,
'Net::SMTP::SSL' => 0,
'MIME::Base64' => 0,
'Authen::SASL' => 0,
'Dancer::Plugin::FlashMessage' => 0,
'LWP::UserAgent' => 5.8,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'yapcweb-*' },
);