-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
35 lines (32 loc) · 850 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
33
34
35
use 5.006; use strict; use warnings;
my $sc = q<https://github.com/ap/Plack-App-Hostname>;
my $bt = q<https://rt.cpan.org/Public/Dist/Display.html?Name=Plack-App-Hostname>;
our %META = (
name => 'Plack-App-Hostname',
author => 'Aristotle Pagaltzis <pagaltzis@gmx.de>',
x_copyright => { holder => 'Aristotle Pagaltzis', year => 2016 },
license => 'perl_5',
resources => {
license => [ q<https://dev.perl.org/licenses/> ],
repository => { type => 'git', url => "$sc.git", web => $sc },
bugtracker => { web => $bt },
},
dynamic_config => 0,
prereqs => {
runtime => {
requires => {qw(
perl 5.006
Plack::Component 0
Plack::Util::Accessor 0
)},
},
test => {
requires => {qw(
Test::More 0
Plack::Test 0
HTTP::Request::Common 0
)},
},
},
);
require './inc/WriteMakefile.pl';