-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile.PL
35 lines (30 loc) · 836 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
use ExtUtils::MakeMaker;
print <<EOM ;
,----------------------------------.
| CouchDB version 0.9.0+ required! |
`--. ,-----------------------------'
|/
`
-b
EOM
WriteMakefile (
NAME => 'AnyEvent::CouchDB',
AUTHOR => 'John BEPPU <[email protected]>',
LICENSE => 'mit',
VERSION_FROM => 'lib/AnyEvent/CouchDB.pm',
ABSTRACT_FROM => 'lib/AnyEvent/CouchDB.pm',
EXE_FILES => [ 'bin/couchdb-push' ],
META_MERGE => {
no_index => { directory => [ qw(eg) ] },
},
PREREQ_PM => {
'AnyEvent::HTTP' => 1.11,
'CouchDB::View' => 0,
'JSON' => 0,
'Data::Dump::Streamer' => 0,
'Exception::Class' => 0,
'IO::All' => 0,
'Scope::Guard' => 0,
'Scalar::Util' => 0,
},
);