-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
47 lines (42 loc) · 1 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
use v5.10;
use strict;
use ExtUtils::MakeMaker;
my %args = (
NAME => 'Chouette',
VERSION_FROM => 'lib/Chouette.pm',
PREREQ_PM => {
'common::sense' => 0,
'EV' => 0,
'AnyEvent' => 0,
'JSON::XS' => 0,
'Regexp::Assemble' => 0,
'Feersum' => 0,
'Plack' => 0,
'Plack::Request::WithEncoding' => 0,
'YAML' => 0,
## hoytech stuff
'AnyEvent::Task' => '0.804',
'Callback::Frame' => 0,
'Session::Token' => 0,
'Log::Defer' => 0,
'Log::File::Rolling' => 0,
'Log::Defer::Viz' => 0,
},
TEST_REQUIRES => {
'AnyEvent::HTTP' => 0,
'File::Temp' => 0,
},
LIBS => [],
DEFINE => '',
LICENSE => 'perl',
dist => {
PREOP => 'pod2text $(VERSION_FROM) > $(DISTVNAME)/README',
},
META_MERGE => {
resources => {
repository => 'git://github.com/hoytech/Chouette.git',
bugtracker => 'https://github.com/hoytech/Chouette/issues',
},
},
);
WriteMakefile(%args);