rjbs / cpan-mini

mirror just the newest versions of things in the CPAN

This URL has Read+Write access

cpan-mini / Makefile.PL
100644 27 lines (19 sloc) 0.563 kb
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
use 5.006;
use strict;
use warnings;
 
use inc::Module::Install;
 
name ('CPAN-Mini');
author ('Ricardo SIGNES <rjbs@cpan.org>');
license ('perl');
all_from ('lib/CPAN/Mini.pm');
 
requires(URI => 1);
requires(LWP => 5);
requires('Compress::Zlib' => '1.20');
requires('File::Path' => '2.04'); # new interface, bugfixes
requires('File::HomeDir' => '0.57'); # Win32 Support
requires('Pod::Usage' => '1.00');
 
extra_tests;
 
install_script('bin/minicpan');
 
repository('http://github.com/rjbs/cpan-mini');
auto_manifest;
 
WriteAll();