forked from Mons/AnyEvent-Connection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
26 lines (19 loc) · 692 Bytes
/
Makefile.PL
File metadata and controls
26 lines (19 loc) · 692 Bytes
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
use inc::Module::Install;
my $MI = $Module::Install::MAIN;
#auto_version 'lib/AnyEvent/Connection.pm', -d('inc/.author');
perl_version '5.008008';
name 'AnyEvent-Connection';
all_from 'lib/AnyEvent/Connection.pm';
author 'Mons Anderson <mons@cpan.org>';
license 'perl';
build_requires 'Test::More';
build_requires 'Test::NoWarnings';
build_requires 'Test::TCP', '0.14';
build_requires 'lib::abs', '0.90';
requires 'common::sense', 2;
requires 'AnyEvent', 5;
requires 'Object::Event', '1.21';
auto_provides;
auto_install;
WriteAll;
print STDERR "Generated makefile for ".$MI->load('name')->name."-".$MI->load('version')->version."\n";