-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathMakefile.PL
40 lines (39 loc) · 1.44 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
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'CPAN::Mini::Webserver',
VERSION_FROM => 'lib/CPAN/Mini/Webserver.pm',
ABSTRACT => 'Search and browse Mini CPAN',
AUTHOR => 'Leon Brocard <[email protected]>',
LICENSE => 'perl',
PREREQ_PM => {
'App::Cache' => '0',
'Archive::Peek' => '0.33',
'CGI' => '3.16',
'CPAN::Mini' => '0.565',
'File::Type' => '0',
'HTTP::Server::Simple' => '0.34',
'IO::Capture::Stdout' => '0',
'List::MoreUtils' => '0',
'MIME::Base64' => '0',
'Module::InstalledVersion' => '0',
'Moose' => '0',
'Parse::CPAN::Authors' => '0',
'Parse::CPAN::Whois' => '0.02',
'Parse::CPAN::Meta' => '0',
'Parse::CPAN::Packages' => '2.28',
'Path::Class' => '0',
'Pod::Simple::HTML' => '0',
'Perl6::Say' => '0',
'PPI' => '0',
'PPI::HTML' => '0',
'Search::QueryParser' => '0',
'String::CamelCase' => '0',
'Template::Declare' => '0.29',
'Test::More' => '0',
'Text::Unidecode' => '0',
},
'EXE_FILES' => ['bin/minicpan_webserver'],
);